-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
39 lines (37 loc) · 1.51 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
lazy val reboundVersion = "0.2.2"
lazy val akkaHttpVersion = "10.1.11"
lazy val akkaVersion = "2.6.1"
lazy val velocityVersion = "2.1"
lazy val scalatestVersion = "3.0.5"
lazy val scalamockVersion = "4.1.0"
lazy val root = (project in file("."))
.enablePlugins(JavaAppPackaging)
.settings(
packageName in Docker := "pileworx/rebound",
version in Docker := reboundVersion,
dockerExposedPorts := Seq(8585)
)
.settings(
inThisBuild(List(
organization := "io.pileworx",
scalaVersion := "2.12.8",
version := reboundVersion,
scalacOptions := Seq("-feature", "-deprecation", "-encoding", "utf8")
)),
name := """rebound""",
libraryDependencies ++= Seq(
"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,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.google.code.gson" % "gson" % "2.8.5",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"org.apache.velocity" % "velocity-engine-core" % velocityVersion,
"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" % scalatestVersion % Test,
"org.scalamock" %% "scalamock" % scalamockVersion % Test
)
)