-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
35 lines (24 loc) · 920 Bytes
/
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
27
28
29
30
31
32
33
34
35
import com.typesafe.startscript.StartScriptPlugin
seq(StartScriptPlugin.startScriptForClassesSettings: _*)
organization := "com.example"
version := "0.1"
scalaVersion := "2.10.3"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
resolvers ++= Seq(
"spray repo" at "http://repo.spray.io/"
)
libraryDependencies ++= {
val akkaV = "2.1.4"
val sprayV = "1.1-RC3"
Seq(
"io.spray" % "spray-can" % sprayV,
"io.spray" % "spray-routing" % sprayV,
"io.spray" % "spray-testkit" % sprayV,
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV,
"org.specs2" %% "specs2" % "2.2.3" % "test"
)
}
libraryDependencies += "com.typesafe" %% "scalalogging-slf4j" % "1.0.1"
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.2"
seq(Revolver.settings: _*)