-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
50 lines (39 loc) · 1.5 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
44
45
46
47
48
49
50
name := "game-experience-collector"
version := "0.1"
lazy val akkaV = "2.4.20"
lazy val akkaHttpV = "10.0.15"
lazy val scalaTestV = "3.0.1"
lazy val slickV = "3.3.0"
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.github.alikemalocalan",
scalaVersion := "2.11.12"
)),
name := "hello-world",
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpV ,
"com.typesafe.akka" %% "akka-persistence" % akkaV,
"org.fusesource.leveldbjni" % "leveldbjni-all" % "1.8", //TODO : Remove After done
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
"com.typesafe.slick" %% "slick-hikaricp" % slickV,
"com.typesafe.slick" %% "slick-codegen" % slickV,
"org.scalaz" %% "scalaz-core" % "7.2.27",
"org.postgresql" % "postgresql" % "42.2.5",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.0",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"org.scalatest" %% "scalatest" % scalaTestV % Test,
"com.pauldijou" %% "jwt-spray-json" % "2.1.0"
)
)
enablePlugins(JavaAppPackaging)
enablePlugins(DockerPlugin)
enablePlugins(AshScriptPlugin)
mainClass in Compile := Some("com.github.alikemalocalan.App")
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
dockerBaseImage := "openjdk:jre-alpine"
dockerExposedPorts ++= Seq(8080, 9000)
dockerUsername := Some("alikemalocalan")
Revolver.settings
parallelExecution in Test := false
fork := true