-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.sbt
32 lines (26 loc) · 961 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
29
30
31
name := "akka-http-multiplayer-snake"
organization := "miciek"
version := "1.0"
scalaVersion := "2.11.8"
libraryDependencies ++= {
val akkaVersion = "2.4.17"
val akkaHttpVersion = "10.0.4"
val logbackVersion = "1.1.7"
val scalaTestVersion = "3.0.1"
val junitVersion = "4.12"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"com.typesafe.akka" %% "akka-http-core" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion % Test,
"com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion % Test,
// LOGGING
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"ch.qos.logback" % "logback-classic" % logbackVersion,
// TESTING
"org.scalatest" %% "scalatest" % scalaTestVersion % Test,
"junit" % "junit" % junitVersion % Test
)
}
fork in run := true