Skip to content

Commit d0d4452

Browse files
authored
Merge pull request #35 from delphi-hub/vulnerability_fix
Unable to compile using Scala 2.13
2 parents 37db71e + 2835ad1 commit d0d4452

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ lazy val scala212 = "2.12.10"
2626
lazy val scala213 = "2.13.1"
2727
lazy val supportedScalaVersions = List(scala212, scala213)
2828

29-
ThisBuild / scalaVersion := scala213
29+
ThisBuild / scalaVersion := scala212
3030

3131
name := "delphi"
3232
version := "1.0.0-SNAPSHOT"
@@ -51,16 +51,16 @@ libraryDependencies ++= Seq(
5151
)
5252

5353
libraryDependencies += "com.github.scopt" %% "scopt" % "3.7.0"
54-
libraryDependencies += "io.spray" %% "spray-json" % "1.3.3"
54+
libraryDependencies += "io.spray" %% "spray-json" % "1.3.5"
5555
libraryDependencies += "de.vandermeer" % "asciitable" % "0.3.2"
5656
libraryDependencies += "com.lihaoyi" %% "fansi" % "0.2.5"
5757
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value
5858
libraryDependencies += "au.com.bytecode" % "opencsv" % "2.4"
5959
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.4" % "test"
6060

6161
libraryDependencies ++= Seq(
62-
"com.softwaremill.sttp" %% "core" % "1.5.4",
63-
"com.softwaremill.sttp" %% "spray-json" % "1.5.4"
62+
"com.softwaremill.sttp" %% "core" % "1.7.2",
63+
"com.softwaremill.sttp" %% "spray-json" % "1.7.2"
6464
)
6565

6666

0 commit comments

Comments
 (0)