Skip to content

Commit 74ba826

Browse files
committed
Use type-safe scope configuration
1 parent 8d6fe78 commit 74ba826

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.sbt

+4-4
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
104104
.jvmSettings(
105105
OsgiKeys.exportPackage := Seq(s"scala.xml.*;version=${version.value}"),
106106

107-
libraryDependencies += "junit" % "junit" % "4.12" % "test",
108-
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test",
109-
libraryDependencies += "org.apache.commons" % "commons-lang3" % "3.9" % "test",
110-
libraryDependencies += ("org.scala-lang" % "scala-compiler" % scalaVersion.value % "test").exclude("org.scala-lang.modules", s"scala-xml_${scalaBinaryVersion.value}")
107+
libraryDependencies += "junit" % "junit" % "4.12" % Test,
108+
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test,
109+
libraryDependencies += "org.apache.commons" % "commons-lang3" % "3.9" % Test,
110+
libraryDependencies += ("org.scala-lang" % "scala-compiler" % scalaVersion.value % Test).exclude("org.scala-lang.modules", s"scala-xml_${scalaBinaryVersion.value}")
111111
)
112112
.jsSettings(
113113
// Scala.js cannot run forked tests

0 commit comments

Comments
 (0)