-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
28 lines (23 loc) · 1023 Bytes
/
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
name := "dibujakka"
version := "1.0"
scalaVersion := "2.13.1"
lazy val akkaVersion = "2.6.14"
lazy val akkaHttpVersion = "10.2.4"
lazy val doobieVersion = "0.12.1"
enablePlugins(JavaAppPackaging)
mainClass in Compile := Some("dibujakka.Server")
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor-typed" % akkaVersion,
"ch.qos.logback" % "logback-classic" % "1.2.3",
"com.typesafe.akka" %% "akka-actor-testkit-typed" % akkaVersion % Test,
"org.scalatest" %% "scalatest" % "3.1.0" % Test,
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
"com.typesafe.akka" %% "akka-http" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion,
"org.tpolecat" %% "doobie-core" % doobieVersion,
"org.tpolecat" %% "doobie-postgres" % doobieVersion,
"org.tpolecat" %% "doobie-specs2" % doobieVersion,
"ch.megard" %% "akka-http-cors" % "1.1.1"
)