-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
50 lines (44 loc) · 2.05 KB
/
build.sbt
File metadata and controls
50 lines (44 loc) · 2.05 KB
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 := "HealthChecker"
version := "0.1"
scalaVersion in ThisBuild := "2.12.8"
organization in ThisBuild := "org.backsapc"
maintainer := "backsapce@hotmail.com"
// https://docs.scala-lang.org/overviews/compiler-options/index.html
val scalacCompileOpts = Seq(
"-feature",
"-unchecked",
// "-deprecation:false", // uncomment if you *must* use deprecated apis
"-Xfatal-warnings",
"-Ywarn-value-discard",
"-Xlint:unsound-match",
"-deprecation"
)
lazy val akkaHttpVersion = "10.1.8"
lazy val akkaVersion = "2.5.21"
resolvers ++= Seq("snapshots", "releases").map(Resolver.sonatypeRepo)
resolvers += "spray repo" at "http://repo.spray.io"
libraryDependencies ++= Seq(
"com.typesafe.slick" %% "slick" % "3.3.0",
"org.slf4j" % "slf4j-nop" % "1.6.4",
"com.typesafe.slick" %% "slick-hikaricp" % "3.3.0",
"com.h2database" % "h2" % "1.4.199",
"com.jason-goodwin" %% "authentikat-jwt" % "0.4.5",
"com.github.t3hnar" %% "scala-bcrypt" % "4.0",
"com.beachape" %% "enumeratum" % "1.5.13",
"io.lemonlabs" %% "scala-uri" % "1.4.5",
"com.github.daddykotex" %% "courier" % "1.0.0",
"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-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test,
"com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion % Test,
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion % Test,
"org.scalatest" %% "scalatest" % "3.0.3" % Test,
"org.scalamock" %% "scalamock" % "4.1.0" % Test
)
scalacOptions in ThisBuild ++= scalacCompileOpts
coverageEnabled := true
enablePlugins(JavaAppPackaging)
enablePlugins(UniversalPlugin)