-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
26 lines (22 loc) · 989 Bytes
/
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
name := "scalastic-api"
version := "0.1"
scalaVersion := "2.12.8"
lazy val akkaHttpVersion = "10.1.8"
lazy val akkaVersion = "2.5.22"
libraryDependencies ++= Seq(
"org.elasticsearch" % "elasticsearch" % "6.5.4",
"org.elasticsearch.client" % "transport" % "6.5.4",
"org.elasticsearch.client" % "elasticsearch-rest-high-level-client" % "6.5.4",
"com.typesafe" % "config" % "1.3.2",
"org.slf4j" % "slf4j-api" % "1.7.25",
"org.slf4j" % "slf4j-simple" % "1.7.25",
"org.apache.logging.log4j" % "log4j-api" % "2.11.2",
"org.apache.logging.log4j" % "log4j-core" % "2.11.2",
"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.play" %% "play" % "2.6.11",
"com.typesafe" % "config" % "1.3.2"
)