Created
January 31, 2015 11:46
-
-
Save josdirksen/59964f903b173a2024ea to your computer and use it in GitHub Desktop.
build.sbt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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