-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
43 lines (29 loc) · 1.24 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
41
42
43
name := "delphi-registry"
version := "1.0.0-SNAPSHOT"
scalaVersion := "2.12.4"
val akkaVersion = "2.5.14"
libraryDependencies += "com.typesafe.akka" %% "akka-http" % "10.0.14"
libraryDependencies += "com.typesafe.akka" %% "akka-stream" % akkaVersion
libraryDependencies += "com.typesafe.akka" %% "akka-http-spray-json" % "10.1.5"
libraryDependencies += "io.spray" %% "spray-json" % "1.3.3"
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.4" % "test"
libraryDependencies += "org.parboiled" %% "parboiled" % "2.1.4"
libraryDependencies += "com.typesafe.akka" %% "akka-http-testkit" % "10.1.5"
libraryDependencies += "com.pauldijou" %% "jwt-core" % "1.0.0"
lazy val registry = (project in file(".")).
enablePlugins(JavaAppPackaging).
enablePlugins(DockerPlugin).
enablePlugins(ScalastylePlugin).
settings(
dockerBaseImage := "openjdk:jre-alpine"
).
enablePlugins(AshScriptPlugin)
libraryDependencies ++= List(
"com.typesafe.slick" %% "slick" % "3.2.3",
"com.typesafe.slick" %% "slick-hikaricp" % "3.2.3",
"com.typesafe.slick" %% "slick-codegen" % "3.2.3",
"mysql" % "mysql-connector-java" % "8.0.16",
"org.slf4j" % "slf4j-nop" % "1.6.4"
)
libraryDependencies += "com.h2database" % "h2" % "1.4.199"
trapExit := false