Skip to content

Commit

Permalink
Don't override test forking
Browse files Browse the repository at this point in the history
* build.sbt (fork): Test forking is already enabled by sbt
scala module plugin.
  • Loading branch information
ashawley committed Apr 26, 2017
1 parent d1f54f3 commit 4c3504d
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,7 @@ lazy val xml = crossProject.in(file("."))
libraryDependencies += "junit" % "junit" % "4.11" % "test",
libraryDependencies += "com.novocode" % "junit-interface" % "0.10" % "test",
libraryDependencies += ("org.scala-lang" % "scala-compiler" % scalaVersion.value % "test").exclude("org.scala-lang.modules", s"scala-xml_${scalaVersion.value}"),
mimaPreviousVersion := Some("1.0.6"),
// You cannot disable JVM test forking when working on scala modules
// that are distributed with the compiler because of an SBT
// classloader leaking issue (scala/scala-xml#20 and #112).
fork in Test := true): _*)
mimaPreviousVersion := Some("1.0.6")): _*)
.jsConfigure(_.enablePlugins(ScalaJSJUnitPlugin))

lazy val xmlJVM = xml.jvm
Expand Down

0 comments on commit 4c3504d

Please sign in to comment.