From 96650cfbf7003c198e2759bdca4a9a37dac03cad Mon Sep 17 00:00:00 2001 From: Tom Grigg Date: Thu, 4 Mar 2021 21:09:21 -0800 Subject: [PATCH] Downgrade sbt-osgi to 0.9.4, to work around race condition in 0.9.5+ Ref: https://github.com/lampepfl/dotty/issues/11604 (cherry picked from commit d3b7db9af036829e417e6a08940d9e4e406cfbf2) --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index ef6ed09666..d2464f6ba7 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,7 +2,7 @@ addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.4") addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1") -addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.6") +addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.4") val scalaJSVersion = Option(System.getenv("SCALAJS_VERSION")).getOrElse("1.5.0")