We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb8d71d commit c47e0bfCopy full SHA for c47e0bf
build.sbt
@@ -250,7 +250,12 @@ lazy val input = projectMatrix
250
coverageEnabled := false,
251
// mimic dependsOn(shared) but allowing binary Scala version matching
252
Compile / internalDependencyClasspath ++=
253
- resolve(shared, Compile / exportedProducts).value
+ resolve(shared, Compile / exportedProducts).value,
254
+ scalacOptions ++= {
255
+ // Exercise https://github.com/scala/scala3-lts/pull/535
256
+ if (scalaVersion.value.startsWith("3.3")) Seq("-Wconf:id=E198:info")
257
+ else Seq()
258
+ }
259
)
260
.defaultAxes(VirtualAxis.jvm)
261
.jvmPlatformTargets(cliScalaVersionsWithTargets.map(_._2))
0 commit comments