Skip to content

Commit 098dd3f

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 42163d4 commit 098dd3f

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
@@ -34,7 +34,7 @@ libraryDependencies += "com.novocode" % "junit-interface" % "0.10" % "test"
3434

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

3939
mimaPreviousVersion := Some("1.0.5")
4040

0 commit comments

Comments
 (0)