-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
21 lines (17 loc) · 1013 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name := "Hello"
scalaVersion := "2.11.8"
val akkaVersion = "2.4.14"
libraryDependencies ++= Seq(
"ch.qos.logback" % "logback-classic" % "1.1.7",
"ch.qos.logback" % "logback-core" % "1.1.7",
"org.slf4j" % "slf4j-api" % "1.7.21",
"org.postgresql" % "postgresql" % "9.3-1100-jdbc4",
"org.flywaydb" % "flyway-core" % "4.0.3",
"com.typesafe.akka" %% "akka-http-core" % akkaVersion,
"com.typesafe.akka" %% "akka-http-experimental" % akkaVersion,
"com.typesafe.akka" %% "akka-http-jackson-experimental" % akkaVersion,
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaVersion,
"com.typesafe.slick" %% "slick" % "3.1.1",
"com.typesafe.slick" %% "slick-hikaricp" % "3.1.1",
"org.scalatest" %% "scalatest" % "3.0.1" % "test"
)