@@ -4,34 +4,31 @@ version := "1.0.0-SNAPSHOT"
4
4
5
5
scalaVersion := " 2.12.4"
6
6
7
- val akkaHttpVersion = " 10.1.5"
8
-
9
- libraryDependencies += " org.parboiled" %% " parboiled" % " 2.1.4"
10
-
11
- libraryDependencies += " com.typesafe.akka" %% " akka-http" % akkaHttpVersion
12
- libraryDependencies += " com.typesafe.akka" %% " akka-http-testkit" % akkaHttpVersion
13
- libraryDependencies += " com.typesafe.akka" %% " akka-stream" % " 2.5.12"
14
- libraryDependencies += " com.typesafe.akka" %% " akka-slf4j" % " 2.5.12"
15
- libraryDependencies += " com.typesafe.akka" %% " akka-http-spray-json" % akkaHttpVersion
16
- libraryDependencies += " io.spray" %% " spray-json" % " 1.3.3"
17
- libraryDependencies += " org.scalactic" %% " scalactic" % " 3.0.4"
18
- libraryDependencies += " org.scalatest" %% " scalatest" % " 3.0.4" % " it,test"
7
+ val akkaVersion = " 2.5.14"
8
+ libraryDependencies ++= Seq (
9
+ " com.typesafe.akka" %% " akka-stream" % akkaVersion,
10
+ " com.typesafe.akka" %% " akka-slf4j" % akkaVersion
11
+ )
19
12
20
- libraryDependencies += " ch.qos.logback" % " logback-classic" % " 1.2.3" % Runtime
13
+ val akkaHttpVersion = " 10.1.5"
14
+ libraryDependencies ++= Seq (
15
+ " com.typesafe.akka" %% " akka-http" % akkaHttpVersion,
16
+ " com.typesafe.akka" %% " akka-http-testkit" % akkaHttpVersion,
17
+ " com.typesafe.akka" %% " akka-http-spray-json" % akkaHttpVersion
18
+ )
21
19
22
20
val elastic4sVersion = " 6.3.0"
23
21
libraryDependencies ++= Seq (
24
22
" com.sksamuel.elastic4s" %% " elastic4s-core" % elastic4sVersion,
25
-
26
-
27
- // for the http client
28
23
" com.sksamuel.elastic4s" %% " elastic4s-http" % elastic4sVersion,
29
-
30
- // if you want to use reactive streams
31
24
" com.sksamuel.elastic4s" %% " elastic4s-http-streams" % elastic4sVersion,
32
-
33
25
)
34
26
27
+ libraryDependencies += " org.parboiled" %% " parboiled" % " 2.1.4"
28
+ libraryDependencies += " io.spray" %% " spray-json" % " 1.3.3"
29
+ libraryDependencies += " org.scalactic" %% " scalactic" % " 3.0.4"
30
+ libraryDependencies += " org.scalatest" %% " scalatest" % " 3.0.4" % " it,test"
31
+ libraryDependencies += " ch.qos.logback" % " logback-classic" % " 1.2.3" % Runtime
35
32
36
33
lazy val webapi = (project in file(" ." )).
37
34
// https://www.scala-sbt.org/1.x/docs/Testing.html
0 commit comments