-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
36 lines (24 loc) · 1.06 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
name := "scala-elastic4s-akka-http"
version := "1.0"
scalaVersion := "2.12.2"
organization := "com.demo"
javacOptions ++= Seq("-source", "1.8", "-target", "1.8")
scalacOptions += "-deprecation"
// fork a new JVM for 'run' and 'test:run'
fork := true
resolvers += Resolver.bintrayRepo("hseeberger", "maven")
libraryDependencies ++= {
val akkaHttp = "10.0.1"
val scalaTest = "3.0.1"
Seq(
"com.typesafe.akka" %% "akka-http-core" % akkaHttp,
"com.typesafe.akka" %% "akka-http" % akkaHttp,
"de.heikoseeberger" %% "akka-http-jackson" % "1.11.0",
"org.scalatest" %% "scalatest" % scalaTest % "test",
"com.typesafe.scala-logging" %% "scala-logging" % "3.5.0",
"ch.qos.logback" % "logback-classic" % "1.1.7",
"com.typesafe.akka" %% "akka-slf4j" % "2.4.13",
"com.sksamuel.elastic4s" %% "elastic4s-core" % "5.1.5",
"com.sksamuel.elastic4s" %% "elastic4s-jackson" % "5.1.5"
)
}