-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
42 lines (31 loc) · 1.32 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
enablePlugins(JavaAppPackaging)
enablePlugins(UniversalPlugin)
enablePlugins(DockerPlugin)
name := "antagonist-cast"
organization := "io.sudostream.api-antagonist"
version := "0.0.2"
scalaVersion := "2.11.8"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
resolvers += "Typesafe Repo" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies ++= {
val akkaV = "2.4.12"
val akkaHttpVersion = "2.4.11"
val scalaTestV = "2.2.6"
Seq(
"io.sudostream.api-antagonist" %% "messages" % "0.0.7",
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"com.typesafe.akka" %% "akka-http-core" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-experimental" %akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-stream-kafka" % "0.13",
"org.scalatest" %% "scalatest" % scalaTestV % "test"
)
}
//credentials += Credentials("Artifactory Realm", "104.1.1.1", "user", "password")
Revolver.settings
dockerExposedPorts := Seq(9000)
dockerRepository := Some("eu.gcr.io/api-event-horizon-151020")
dockerUpdateLatest := true
//version in Docker := version.value + "-" + java.util.UUID.randomUUID.toString