-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
22 lines (21 loc) · 925 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
name := "ws"
version := "0.0.0"
scalaVersion := "2.11.8"
fork in Test := true
libraryDependencies ++= {
val akkaV = "2.4.4"
val scalaTestV = "2.2.6"
val slickV = "3.1.1"
val sl4jV = "1.6.4"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"com.typesafe.akka" %% "akka-http-core" % akkaV,
"com.typesafe.akka" %% "akka-http-experimental" % akkaV,
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaV,
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
"org.slf4j" % "slf4j-nop" % sl4jV,
"com.typesafe.akka" %% "akka-http-testkit" % akkaV,
"org.scalatest" %% "scalatest" % scalaTestV % "test"
)
}