From 42367b73e43a534968302e1e355e908a5264bf73 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 20 Oct 2024 21:55:37 +0000 Subject: [PATCH 1/2] Update sbt-scala-module to 3.2.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index e75f562..699b7f7 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,3 @@ -addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.1.0") +addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "3.2.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0") addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") From 8f2daef54ff1d775f9cd26a790a932e33a8540d9 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Sat, 26 Oct 2024 12:48:41 -0700 Subject: [PATCH 2/2] osgi change needed for sbt-scala-module 3.2.0 upgrade --- build.sbt | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sbt b/build.sbt index 6102204..f556e00 100644 --- a/build.sbt +++ b/build.sbt @@ -22,6 +22,7 @@ lazy val proj = crossProject(JSPlatform, JVMPlatform) .crossType(CrossType.Pure) .in(file(".")) .settings(sharedSettings) + .jvmEnablePlugins(SbtOsgi) // until we have actually published for Scala.js. this is also why, // for now, release.yml does just `proj/versionCheck` instead of `versionCheck` .jvmSettings(versionPolicyIntention := Compatibility.BinaryAndSourceCompatible)