From 758b39faa34afb6ed965eb6218c5fd7c4fec788f Mon Sep 17 00:00:00 2001 From: eugene yokota Date: Sun, 15 Feb 2026 17:01:40 -0500 Subject: [PATCH] [2.x] Bump semanticdbVersion (#8746) --- build.sbt | 4 +++- project/plugins.sbt | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 6b4929bf4..8a3dbb2d4 100644 --- a/build.sbt +++ b/build.sbt @@ -48,7 +48,7 @@ ThisBuild / mimaFailOnNoPrevious := false Global / semanticdbEnabled := !(Global / insideCI).value // Change main/src/main/scala/sbt/plugins/SemanticdbPlugin.scala too, if you change this. -Global / semanticdbVersion := "4.14.2" +Global / semanticdbVersion := "4.15.2" val excludeLint = SettingKey[Set[Def.KeyedInitialize[?]]]("excludeLintKeys") Global / excludeLint := (Global / excludeLint).?.value.getOrElse(Set.empty) Global / excludeLint += Utils.componentID @@ -725,6 +725,7 @@ lazy val mainProj = (project in file("main")) sjsonNewCore.value, launcherInterface, caffeine, + scala3Library, ), libraryDependencies ++= List(scalaPar), contrabandSettings, @@ -1274,6 +1275,7 @@ lazy val lmCoursierShaded = project Compile / sources := (lmCoursier / Compile / sources).value, lmCoursierDependencies, autoScalaLibrary := false, + bspEnabled := false, libraryDependencies ++= Seq( scala3Library % Provided, ), diff --git a/project/plugins.sbt b/project/plugins.sbt index aef941d4a..4a8251e1f 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,3 +1,4 @@ +Global / semanticdbVersion := "4.15.2" scalacOptions ++= Seq("-feature", "-language:postfixOps", "-Ywarn-unused:_,-imports") addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.1.1")