-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
34 lines (28 loc) · 1.49 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
name := "StatisticsService"
version := "1.0"
scalaVersion := "2.11.7"
scalacOptions := Seq("-unchecked", "-feature", "-deprecation", "-encoding", "utf8")
//för wabasabi
resolvers += "gphat" at "https://raw.github.com/gphat/mvn-repo/master/releases/"
libraryDependencies ++= {
val akkaV = "2.4.1"
val akkaStreamV = "2.0.1"
val scalaTestV = "2.2.5"
Seq(
"wabisabi" %% "wabisabi" % "2.1.4",
"com.typesafe" % "config" % "1.3.0",
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-stream-experimental" % akkaStreamV,
"com.typesafe.akka" %% "akka-http-core-experimental" % akkaStreamV,
"com.typesafe.akka" %% "akka-http-experimental" % akkaStreamV,
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaStreamV,
"com.typesafe.akka" %% "akka-http-testkit-experimental" % akkaStreamV,
"com.codemettle.reactivemq" %% "reactivemq" % "0.5.0",
"org.apache.activemq" % "activemq-client" % "5.13.1",
"org.json4s" %% "json4s-native" % "3.3.0",
"org.json4s" %% "json4s-ext" % "3.3.0",
"org.json4s" %% "json4s-jackson" % "3.3.0",
"com.github.nscala-time" %% "nscala-time" % "1.8.0",
"org.scalatest" %% "scalatest" % scalaTestV % "test"
)
}