-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
20 lines (17 loc) · 860 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
scalaVersion := "2.12.7"
val stream = "2.5.17"
val http = "10.1.5"
libraryDependencies := Seq(
"com.typesafe.akka" %% "akka-stream" % stream,
"com.typesafe.akka" %% "akka-http" % http,
"com.typesafe.akka" %% "akka-http-spray-json" % http,
"com.typesafe.akka" %% "akka-http-xml" % http,
"com.typesafe.akka" %% "akka-remote" % stream,
"com.typesafe.akka" %% "akka-contrib" % stream,
"org.scala-lang.modules" %% "scala-xml" % "1.0.6",
"com.typesafe.akka" %% "akka-stream-testkit" % stream,
"com.chuusai" %% "shapeless" % "2.3.3",
"com.typesafe.akka" %% "akka-http-testkit" % http % "test",
"org.scalatest" %% "scalatest" % "3.0.5" % "test"
)
resolvers += Resolver.bintrayRepo("fcomb", "maven")