Skip to content

Commit cc6459f

Browse files
committed
Fix exclude rule for scala-xml from scala-compiler
* build.sbt (libraryDependencies): There's no evidence that SBT supports Ivy's exclude globbing. See Ivy documentation http://ant.apache.org/ivy/history/2.4.0/ivyfile/artifact-exclude.html
1 parent 6c13153 commit cc6459f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ libraryDependencies += "org.scalacheck" %% "scalacheck" % "1.13.2" % "test"
3636

3737
//// testing:
3838
// used in CompilerErrors test
39-
libraryDependencies += ("org.scala-lang" % "scala-compiler" % scalaVersion.value % "test").exclude("org.scala-lang.modules", s"scala-xml*")
39+
libraryDependencies += ("org.scala-lang" % "scala-compiler" % scalaVersion.value % "test").exclude("org.scala-lang.modules", s"scala-xml_${scalaVersion.value}")
4040

4141
mimaPreviousVersion := Some("1.0.5")
4242

0 commit comments

Comments
 (0)