-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
29 lines (25 loc) · 1.14 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
name := """xke-akka-http"""
organization := "fr.xebia"
version := "1.0.0"
scalaVersion := "2.12.2"
scalacOptions := Seq("-unchecked", "-feature", "-deprecation", "-encoding", "utf8")
libraryDependencies ++= {
val akkaV = "2.5.1"
val akkaHTTPV = "10.0.6"
val scalaMockV = "3.6.0"
val scalaTestV = "3.0.3"
val logbackV = "1.2.3"
Seq(
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"com.typesafe.akka" %% "akka-http" % akkaHTTPV,
"com.typesafe.akka" %% "akka-http-core" % akkaHTTPV,
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHTTPV,
"ch.qos.logback" % "logback-classic" % logbackV,
"org.scalatest" %% "scalatest" % scalaTestV % "test",
"org.scalamock" %% "scalamock-scalatest-support" % scalaMockV % "test",
"com.typesafe.akka" %% "akka-http-testkit" % akkaHTTPV % "test"
)
}
Revolver.settings
enablePlugins(JavaAppPackaging)