-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
40 lines (27 loc) · 1.07 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
27
28
29
30
31
32
33
34
35
36
37
38
39
name := "ReactivePing"
version := "1.0"
scalaVersion := "2.11.8"
compileOrder := CompileOrder.JavaThenScala
scalacOptions in ThisBuild := Seq("-feature", "-unchecked", "-deprecation", "-encoding", "utf8", "-Xlint")
(fork in Test) := true
libraryDependencies ++= {
val akkaVersion = "2.4.10"
// val json4sVersion = "3.4.0"
val dispatchVersion = "0.11.3"
val slf4jVersion = "1.7.21"
val logbackVersion = "1.1.7"
val h2Version = "1.4.192"
val jnaVersion = "4.2.2"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion
, "com.typesafe.akka" %% "akka-http-experimental" % akkaVersion
, "com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaVersion
, "net.java.dev.jna" % "jna-platform" % jnaVersion
, "net.databinder.dispatch" %% "dispatch-core" % dispatchVersion
, "org.slf4j" % "slf4j-api" % slf4jVersion
, "ch.qos.logback" % "logback-classic" % logbackVersion
, "com.h2database" % "h2" % h2Version
, "com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test
, "org.scalatest" %% "scalatest" % "3.0.0" % Test
)
}