Skip to content

Instantly share code, notes, and snippets.

@josdirksen
Created January 31, 2015 11:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josdirksen/59964f903b173a2024ea to your computer and use it in GitHub Desktop.
Save josdirksen/59964f903b173a2024ea to your computer and use it in GitHub Desktop.
build.sbt
import com.typesafe.sbt.SbtAspectj._
name := "http-akka"
version := "1.0"
scalaVersion := "2.11.5"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-http-core-experimental" % "1.0-M2",
"org.reactivemongo" %% "reactivemongo" % "0.10.5.0.akka23",
"org.reactivemongo" %% "play2-reactivemongo" % "0.10.5.0.akka23",
"com.typesafe.play" % "play-json_2.11" % "2.4.0-M2",
"ch.qos.logback" % "logback-classic" % "1.1.2"
)
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
resolvers += "Typesafe" at "https://repo.typesafe.com/typesafe/releases/"
mainClass in (Compile, run) := Some("Boot")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment