From ccdab2be2f1ea5f2109da9d2d4e8f336eb491349 Mon Sep 17 00:00:00 2001 From: Brice Jaglin Date: Mon, 22 Apr 2024 23:26:48 +0200 Subject: [PATCH] bump minimum sbt version at runtime to prevent race conditions on classes.bak --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index fbe3b8a3..23ce6dc3 100644 --- a/build.sbt +++ b/build.sbt @@ -56,7 +56,7 @@ scriptedSbt := { if (jdk >= 21) "1.9.0" // first release that supports JDK21 else - (pluginCrossBuild / sbtVersion).value + "1.3.3" // get https://github.com/sbt/sbt/issues/1673 to avoid race conditions } libraryDependencies += compilerPlugin(scalafixSemanticdb)