Ignore spurious warnings (#8575)

This commit is contained in:
Hubert Plociniczak 2023-12-19 15:43:48 +01:00 committed by GitHub
parent 6983474650
commit 88c1d01891
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1751,7 +1751,12 @@ lazy val `runtime-parser` =
"com.github.sbt" % "junit-interface" % junitIfVersion % Test,
"org.scalatest" %% "scalatest" % scalatestVersion % Test,
"org.netbeans.api" % "org-openide-util-lookup" % netbeansApiVersion % "provided"
)
),
(Compile / logManager) :=
sbt.internal.util.CustomLogManager.excludeMsg(
"Could not determine source for class ",
Level.Warn
)
)
.dependsOn(syntax)
.dependsOn(`syntax-rust-definition`)