diff --git a/build.sbt b/build.sbt index ad7224be98..7aadb191cb 100644 --- a/build.sbt +++ b/build.sbt @@ -12,7 +12,7 @@ def localSnapshotVersion: String = s"$parseTagVersion-SNAPSHOT" def isCI = System.getenv("CI") != null def scala212 = "2.12.20" -def scala213 = "2.13.13" +def scala213 = "2.13.14" inThisBuild(List( version ~= { dynVer => @@ -35,6 +35,8 @@ inThisBuild(List( libraryDependencies ++= List(munit.value % Test, scalacheck % Test, scalametaTestkit % Test), testFrameworks += new TestFramework("munit.Framework"), + // causes native image issues + dependencyOverrides += "org.jline" % "jline" % "3.23.0", )) name := "scalafmtRoot" diff --git a/project/build.properties b/project/build.properties index 04267b14af..0b699c3052 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.9 +sbt.version=1.10.2