1
1
name := " delphi-webapi"
2
2
3
- version := " 1.0.0-SNAPSHOT "
3
+ version := " 0.9.5 "
4
4
5
- scalaVersion := " 2.12.4 "
5
+ scalaVersion := " 2.13.1 "
6
6
7
- val akkaVersion = " 2.5.16 "
7
+ val akkaVersion = " 2.6.1 "
8
8
libraryDependencies ++= Seq (
9
9
" com.typesafe.akka" %% " akka-stream" % akkaVersion,
10
10
" com.typesafe.akka" %% " akka-slf4j" % akkaVersion
11
11
)
12
12
13
- val akkaHttpVersion = " 10.1.5 "
13
+ val akkaHttpVersion = " 10.1.10 "
14
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
19
// Including http client for elastic4s
20
- libraryDependencies += " org.apache.httpcomponents" % " httpclient" % " 4.5.3 "
20
+ libraryDependencies += " org.apache.httpcomponents" % " httpclient" % " 4.5.9 "
21
21
22
- val elastic4sVersion = " 6.3.8 "
22
+ val elastic4sVersion = " 6.7.4 "
23
23
libraryDependencies ++= Seq (
24
24
" com.sksamuel.elastic4s" %% " elastic4s-core" % elastic4sVersion,
25
25
// Excluding default 4.5.2 due to https://snyk.io/vuln/SNYK-JAVA-ORGAPACHEHTTPCOMPONENTS-31517
26
26
" com.sksamuel.elastic4s" %% " elastic4s-http" % elastic4sVersion exclude(" org.apache.httpcomponents" , " httpclient" ),
27
27
" com.sksamuel.elastic4s" %% " elastic4s-http-streams" % elastic4sVersion,
28
28
)
29
29
30
+ libraryDependencies += " de.upb.cs.swt.delphi" %% " delphi-core" % " 0.9.2"
30
31
31
- libraryDependencies += " com.pauldijou" %% " jwt-core" % " 1.0 .0"
32
+ libraryDependencies += " com.pauldijou" %% " jwt-core" % " 4.2 .0"
32
33
33
- libraryDependencies += " org.parboiled" %% " parboiled" % " 2.1.4 "
34
+ libraryDependencies += " org.parboiled" %% " parboiled" % " 2.1.8 "
34
35
libraryDependencies += " io.spray" %% " spray-json" % " 1.3.5"
35
- libraryDependencies += " org.scalactic" %% " scalactic" % " 3.0.4 "
36
- libraryDependencies += " org.scalatest" %% " scalatest" % " 3.0.4 " % " it,test"
36
+ libraryDependencies += " org.scalactic" %% " scalactic" % " 3.1.0 "
37
+ libraryDependencies += " org.scalatest" %% " scalatest" % " 3.1.0 " % " it,test"
37
38
libraryDependencies += " ch.qos.logback" % " logback-classic" % " 1.2.3" % Runtime
38
39
39
40
lazy val webapi = (project in file(" ." )).
@@ -60,7 +61,7 @@ scalastyleConfig := baseDirectory.value / "project" / "scalastyle-config.xml"
60
61
// Pinning secure versions of insecure transitive libraryDependencies
61
62
// Please update when updating dependencies above (including Play plugin)
62
63
libraryDependencies ++= Seq (
63
- " com.fasterxml.jackson.core" % " jackson-databind" % " 2.9. 10.1"
64
+ " com.fasterxml.jackson.core" % " jackson-databind" % " 2.10.1"
64
65
)
65
66
66
67
trapExit := false
0 commit comments