-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
25 lines (20 loc) · 860 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
organization := "com.moneytransfer"
version := "0.1"
scalaVersion := "2.11.7"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
libraryDependencies ++= {
val akkaV = "2.3.9"
val sprayV = "1.3.3"
Seq(
"io.spray" %% "spray-can" % sprayV,
"io.spray" %% "spray-routing" % sprayV,
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
"io.spray" %% "spray-testkit" % sprayV % "test",
"org.specs2" %% "specs2" % "2.4.15" % "test",
"org.json4s" %% "json4s-native" % "3.3.0",
"ch.qos.logback" % "logback-classic" % "1.1.3"
)
}
Revolver.settings