From 20782e8bf43f4c027552beb5c9ec1b6e57b4a213 Mon Sep 17 00:00:00 2001 From: "Aaron S. Hawley" Date: Wed, 10 Jan 2018 10:48:04 -0500 Subject: [PATCH] Fix exclude rule for circular dependency --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 572b09969..99388d132 100644 --- a/build.sbt +++ b/build.sbt @@ -42,7 +42,7 @@ lazy val xml = crossProject.in(file(".")) libraryDependencies += "junit" % "junit" % "4.11" % "test", libraryDependencies += "com.novocode" % "junit-interface" % "0.10" % "test", libraryDependencies += "org.apache.commons" % "commons-lang3" % "3.5" % "test", - libraryDependencies += ("org.scala-lang" % "scala-compiler" % scalaVersion.value % "test").exclude("org.scala-lang.modules", s"scala-xml_${scalaVersion.value}") + libraryDependencies += ("org.scala-lang" % "scala-compiler" % scalaVersion.value % "test").exclude("org.scala-lang.modules", s"scala-xml_${scalaBinaryVersion.value}") ) .jsSettings( // Scala.js cannot run forked tests