-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
40 lines (34 loc) · 1.32 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
40
name := "stream-labs"
version := "0.1"
scalaVersion := "2.12.8"
resolvers ++= Seq(
Resolver.sonatypeRepo("releases"),
Resolver.sonatypeRepo("snapshots")
)
libraryDependencies ++= {
val akkaV = "2.5.23"
val akkaHttpV = "10.1.8"
val slickV = "3.3.1"
Seq(
"com.typesafe.akka" %% "akka-http" % akkaHttpV,
"com.typesafe.akka" %% "akka-http-core" % akkaHttpV,
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV,
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpV,
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"ch.megard" %% "akka-http-cors" % "0.4.1",
"com.typesafe.akka" %% "akka-testkit" % akkaV % "test",
"org.specs2" %% "specs2-core" % "2.4.17" % "test",
"org.specs2" %% "specs2-mock" % "2.4.17" % "test",
"org.scalactic" %% "scalactic" % "3.0.8",
"org.scalatest" %% "scalatest" % "3.0.8" % "test",
"junit" % "junit" % "4.11" % "test",
"com.github.swagger-akka-http" %% "swagger-akka-http" % "0.11.0",
"com.typesafe.slick" %% "slick" % slickV,
"org.slf4j" % "slf4j-nop" % "1.6.4",
"com.typesafe.slick" %% "slick-hikaricp" % slickV,
"com.byteslounge" %% "slick-repo" % "1.4.3",
"org.xerial" % "sqlite-jdbc" % "3.7.2"
)
}