Skip to content

Commit 7ceb907

Browse files
authored
Merge pull request #48 from delphi-hub/develop
Merge to master
2 parents 5d658ca + 7fe6be4 commit 7ceb907

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

build.sbt

+13-9
Original file line numberDiff line numberDiff line change
@@ -4,40 +4,44 @@ version := "1.0.0-SNAPSHOT"
44

55
scalaVersion := "2.12.4"
66

7-
val akkaVersion = "2.5.14"
8-
libraryDependencies ++= Seq (
7+
val akkaVersion = "2.5.16"
8+
libraryDependencies ++= Seq(
99
"com.typesafe.akka" %% "akka-stream" % akkaVersion,
1010
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion
1111
)
1212

1313
val akkaHttpVersion = "10.1.5"
14-
libraryDependencies ++= Seq (
14+
libraryDependencies ++= Seq(
1515
"com.typesafe.akka" %% "akka-http" % akkaHttpVersion,
1616
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion,
1717
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpVersion
1818
)
19+
//Including http client for elastic4s
20+
libraryDependencies += "org.apache.httpcomponents" % "httpclient" % "4.5.3"
1921

20-
val elastic4sVersion = "6.3.0"
22+
val elastic4sVersion = "6.3.8"
2123
libraryDependencies ++= Seq(
2224
"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"),
2427
"com.sksamuel.elastic4s" %% "elastic4s-http-streams" % elastic4sVersion,
2528
)
2629

30+
2731
libraryDependencies += "com.pauldijou" %% "jwt-core" % "1.0.0"
2832

2933
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"
3135
libraryDependencies += "org.scalactic" %% "scalactic" % "3.0.4"
3236
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.4" % "it,test"
3337
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3" % Runtime
3438

3539
lazy val webapi = (project in file(".")).
3640
//https://www.scala-sbt.org/1.x/docs/Testing.html
37-
configs(IntegrationTest).
41+
configs(IntegrationTest).
3842
settings(
3943
Defaults.itSettings,
40-
).
44+
).
4145
enablePlugins(JavaAppPackaging).
4246
enablePlugins(DockerPlugin).
4347
enablePlugins(ScalastylePlugin).
@@ -56,7 +60,7 @@ scalastyleConfig := baseDirectory.value / "project" / "scalastyle-config.xml"
5660
// Pinning secure versions of insecure transitive libraryDependencies
5761
// Please update when updating dependencies above (including Play plugin)
5862
libraryDependencies ++= Seq(
59-
"com.fasterxml.jackson.core" % "jackson-databind" % "2.9.9"
63+
"com.fasterxml.jackson.core" % "jackson-databind" % "2.9.10.1"
6064
)
6165

6266
trapExit := false

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.2")
44

55
// coverage
66
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
7-
addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "1.3.12")
7+
addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "1.3.14")
88

99
// preparation for dependency checking
1010
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.1")

0 commit comments

Comments
 (0)