Skip to content

Commit d9af2e3

Browse files
committed
Bumped dependencies, moved to Scala 2.13
1 parent 066f666 commit d9af2e3

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

build.sbt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ ThisBuild / homepage := Some(url("https://delphi.cs.uni-paderborn.de/"))
2424

2525
lazy val scala212 = "2.12.10"
2626
lazy val scala213 = "2.13.1"
27-
lazy val supportedScalaVersions = List(scala212)
27+
lazy val supportedScalaVersions = List(scala213)
2828

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

3131
name := "delphi"
32-
version := "1.0.0-SNAPSHOT"
32+
version := "0.9.5-SNAPSHOT"
3333
maintainer := "Ben Hermann <ben.hermann@upb.de>"
3434

3535
packageSummary := "Windows Package for the Delphi CLI"
@@ -39,7 +39,7 @@ wixProductUpgradeId := "4552fb0e-e257-4dbd-9ecb-dba9dbacf424"
3939

4040
scalastyleConfig := baseDirectory.value / "project" / "scalastyle_config.xml"
4141

42-
val http4sVersion = "0.18.21"
42+
val http4sVersion = "0.21.0-M6"
4343

4444
// Only necessary for SNAPSHOT releases
4545
resolvers += Resolver.sonatypeRepo("snapshots")
@@ -50,13 +50,13 @@ libraryDependencies ++= Seq(
5050
"org.http4s" %% "http4s-circe" % http4sVersion
5151
)
5252

53-
libraryDependencies += "com.github.scopt" %% "scopt" % "3.7.0"
53+
libraryDependencies += "com.github.scopt" %% "scopt" % "3.7.1"
5454
libraryDependencies += "io.spray" %% "spray-json" % "1.3.5"
5555
libraryDependencies += "de.vandermeer" % "asciitable" % "0.3.2"
56-
libraryDependencies += "com.lihaoyi" %% "fansi" % "0.2.5"
57-
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value
56+
libraryDependencies += "com.lihaoyi" %% "fansi" % "0.2.7"
5857
libraryDependencies += "au.com.bytecode" % "opencsv" % "2.4"
59-
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.4" % "test"
58+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.1.0" % "test"
59+
libraryDependencies += "joda-time" % "joda-time" % "2.10.5"
6060

6161
libraryDependencies ++= Seq(
6262
"com.softwaremill.sttp" %% "core" % "1.7.2",

0 commit comments

Comments
 (0)