@@ -4,40 +4,44 @@ version := "1.0.0-SNAPSHOT"
4
4
5
5
scalaVersion := " 2.12.4"
6
6
7
- val akkaVersion = " 2.5.14 "
8
- libraryDependencies ++= Seq (
7
+ val akkaVersion = " 2.5.16 "
8
+ libraryDependencies ++= Seq (
9
9
" com.typesafe.akka" %% " akka-stream" % akkaVersion,
10
10
" com.typesafe.akka" %% " akka-slf4j" % akkaVersion
11
11
)
12
12
13
13
val akkaHttpVersion = " 10.1.5"
14
- libraryDependencies ++= Seq (
14
+ libraryDependencies ++= Seq (
15
15
" com.typesafe.akka" %% " akka-http" % akkaHttpVersion,
16
16
" com.typesafe.akka" %% " akka-http-testkit" % akkaHttpVersion,
17
17
" com.typesafe.akka" %% " akka-http-spray-json" % akkaHttpVersion
18
18
)
19
+ // Including http client for elastic4s
20
+ libraryDependencies += " org.apache.httpcomponents" % " httpclient" % " 4.5.3"
19
21
20
- val elastic4sVersion = " 6.3.0 "
22
+ val elastic4sVersion = " 6.3.8 "
21
23
libraryDependencies ++= Seq (
22
24
" com.sksamuel.elastic4s" %% " elastic4s-core" % elastic4sVersion,
23
- " com.sksamuel.elastic4s" %% " elastic4s-http" % elastic4sVersion,
25
+ // Excluding default 4.5.2 due to https://snyk.io/vuln/SNYK-JAVA-ORGAPACHEHTTPCOMPONENTS-31517
26
+ " com.sksamuel.elastic4s" %% " elastic4s-http" % elastic4sVersion exclude(" org.apache.httpcomponents" , " httpclient" ),
24
27
" com.sksamuel.elastic4s" %% " elastic4s-http-streams" % elastic4sVersion,
25
28
)
26
29
30
+
27
31
libraryDependencies += " com.pauldijou" %% " jwt-core" % " 1.0.0"
28
32
29
33
libraryDependencies += " org.parboiled" %% " parboiled" % " 2.1.4"
30
- libraryDependencies += " io.spray" %% " spray-json" % " 1.3.3 "
34
+ libraryDependencies += " io.spray" %% " spray-json" % " 1.3.5 "
31
35
libraryDependencies += " org.scalactic" %% " scalactic" % " 3.0.4"
32
36
libraryDependencies += " org.scalatest" %% " scalatest" % " 3.0.4" % " it,test"
33
37
libraryDependencies += " ch.qos.logback" % " logback-classic" % " 1.2.3" % Runtime
34
38
35
39
lazy val webapi = (project in file(" ." )).
36
40
// https://www.scala-sbt.org/1.x/docs/Testing.html
37
- configs(IntegrationTest ).
41
+ configs(IntegrationTest ).
38
42
settings(
39
43
Defaults .itSettings,
40
- ).
44
+ ).
41
45
enablePlugins(JavaAppPackaging ).
42
46
enablePlugins(DockerPlugin ).
43
47
enablePlugins(ScalastylePlugin ).
@@ -56,7 +60,7 @@ scalastyleConfig := baseDirectory.value / "project" / "scalastyle-config.xml"
56
60
// Pinning secure versions of insecure transitive libraryDependencies
57
61
// Please update when updating dependencies above (including Play plugin)
58
62
libraryDependencies ++= Seq (
59
- " com.fasterxml.jackson.core" % " jackson-databind" % " 2.9.9 "
63
+ " com.fasterxml.jackson.core" % " jackson-databind" % " 2.9.10.1 "
60
64
)
61
65
62
66
trapExit := false
0 commit comments