-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
executable file
·28 lines (20 loc) · 954 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
organization in ThisBuild := "com.jmlopezm"
name := "spray-apr"
version := "1.0"
scalaVersion := "2.10.4"
scalacOptions := Seq("-feature", "-unchecked", "-deprecation", "-encoding", "utf8")
resolvers += "spray repo" at "http://repo.spray.io"
val sprayVersion = "1.3.2"
val akkaVersion = "2.3.6"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-remote" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"io.spray" %% "spray-can" % sprayVersion,
"io.spray" %% "spray-routing" % sprayVersion,
"org.json4s" %% "json4s-native" % "3.2.4")
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test",
"io.spray" %% "spray-testkit" % sprayVersion % "test",
"org.scalatest" %% "scalatest" % "2.1.4" % "test"
)