Skip to content

Commit e3cd594

Browse files
committed
Adding elastic search dependency
1 parent 14f0b21 commit e3cd594

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

build.sbt

+16
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ scalaVersion := "2.12.4"
77
libraryDependencies += "org.parboiled" %% "parboiled" % "2.1.4"
88
libraryDependencies += "com.typesafe.akka" %% "akka-http" % "10.0.11"
99

10+
val elastic4sVersion = "6.2.8"
11+
libraryDependencies ++= Seq(
12+
"com.sksamuel.elastic4s" %% "elastic4s-core" % elastic4sVersion,
13+
14+
// for the http client
15+
"com.sksamuel.elastic4s" %% "elastic4s-http" % elastic4sVersion,
16+
17+
// if you want to use reactive streams
18+
"com.sksamuel.elastic4s" %% "elastic4s-http-streams" % elastic4sVersion,
19+
20+
// testing
21+
"com.sksamuel.elastic4s" %% "elastic4s-testkit" % elastic4sVersion % "test",
22+
"com.sksamuel.elastic4s" %% "elastic4s-embedded" % elastic4sVersion % "test"
23+
)
24+
25+
1026
lazy val webapi = (project in file(".")).
1127
enablePlugins(JavaAppPackaging).
1228
enablePlugins(DockerPlugin).

0 commit comments

Comments
 (0)