-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
36 lines (31 loc) · 1.4 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
lazy val akkaHttpVersion = "10.1.5"
lazy val akkaVersion = "2.5.18"
lazy val slickVersion = "3.2.1"
lazy val mySqlVersion = "5.1.34"
lazy val flywayVersion = "5.0.7"
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.exampleslick",
scalaVersion := "2.12.7"
)),
name := "sample-slick",
libraryDependencies ++= Seq(
//Akka packages
"com.typesafe.akka" %% "akka-http" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-xml" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
//Database packages
"com.typesafe.slick" %% "slick" % slickVersion,
"com.typesafe.slick" %% "slick-hikaricp" % slickVersion,
"mysql" % "mysql-connector-java" % mySqlVersion,
//Migration tool
"org.flywaydb" % "flyway-core" % flywayVersion,
//Test packages
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion % Test,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test,
"com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion % Test,
"org.scalatest" %% "scalatest" % "3.0.5" % Test,
)
)