-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
37 lines (33 loc) · 1.17 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
name := "Forum"
version := "0.8"
scalaVersion := "2.12.7"
val akkaVersion = "2.5.11"
val akkaHttpVersion = "10.1.1"
val scalaTestVersion = "3.0.7"
val slickVersion = "3.2.2"
val sprayVersion = "1.3.4"
val kebsVersion = "1.6.2"
libraryDependencies ++= Seq(
// slick
"com.typesafe.slick" %% "slick" % slickVersion,
// akka
"com.typesafe.akka" % "akka-actor_2.12" % akkaVersion ,
"com.typesafe.akka" %% "akka-contrib" % akkaVersion,
"com.typesafe.akka" %% "akka-http-core" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion,
// testing
"com.typesafe.akka" %% "akka-testkit" % akkaVersion,
"org.scalatest" %% "scalatest" % scalaTestVersion,
// spray
"io.spray" %% "spray-json" % sprayVersion,
// database
"org.postgresql" % "postgresql" % "latest.integration",
"org.flywaydb" % "flyway-core" % "5.0.7",
// kebs
"pl.iterators" %% "kebs-akka-http" % kebsVersion,
"pl.iterators" %% "kebs-spray-json" % kebsVersion,
"pl.iterators" %% "kebs-slick" % kebsVersion
)
scalacOptions ++= Seq("-deprecation", "-feature")