Skip to content

Commit 8495b63

Browse files
authored
Merge pull request #126 from ashawley/enable-test-forking
Fix circular dependency exclude rule
2 parents 121034f + 006afa4 commit 8495b63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ lazy val xml = crossProject.in(file("."))
3232
OsgiKeys.exportPackage := Seq(s"scala.xml.*;version=${version.value}"),
3333
libraryDependencies += "junit" % "junit" % "4.11" % "test",
3434
libraryDependencies += "com.novocode" % "junit-interface" % "0.10" % "test",
35-
libraryDependencies += ("org.scala-lang" % "scala-compiler" % scalaVersion.value % "test").exclude("org.scala-lang.modules", s"scala-xml*"),
35+
libraryDependencies += ("org.scala-lang" % "scala-compiler" % scalaVersion.value % "test").exclude("org.scala-lang.modules", s"scala-xml_${scalaVersion.value}"),
3636
mimaPreviousVersion := Some("1.0.6")): _*)
3737
.jsConfigure(_.enablePlugins(ScalaJSJUnitPlugin))
3838

0 commit comments

Comments
 (0)