forked from cuali/SprayEasterEggs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
26 lines (22 loc) · 1.09 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
organization := "nl.cloudius"
version := "0.4"
scalaVersion := "2.11.6"
resolvers += "Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases"
libraryDependencies ++= {
val akkaV = "2.3.11"
val sprayV = "1.3.3"
Seq(
"com.wandoulabs.akka" %% "spray-websocket" % "0.1.4", // withSources() withJavadoc,
"io.spray" %% "spray-json" % "1.3.2", // withSources() withJavadoc,
"io.spray" %% "spray-can" % sprayV, // withSources() withJavadoc,
"io.spray" %% "spray-routing" % sprayV, // withSources() withJavadoc,
"com.typesafe.akka" %% "akka-actor" % akkaV, // withSources() withJavadoc,
"com.typesafe.akka" %% "akka-slf4j" % akkaV, // withSources() withJavadoc,
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test", //withSources() withJavadoc,
"io.spray" %% "spray-testkit" % sprayV % "test", //withSources() withJavadoc,
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
"junit" % "junit" % "4.12" % "test",
"org.specs2" %% "specs2" % "2.4.17" % "test",
"ch.qos.logback" % "logback-classic" % "1.1.3"
)
}