Skip to content

Commit bae8c59

Browse files
committed
minor cleanup in build.sbt
1 parent 0a3edd6 commit bae8c59

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ lazy val collectionContrib = crossProject(JVMPlatform, JSPlatform)
1616
versionPolicyIntention := Compatibility.BinaryCompatible,
1717
scalaModuleAutomaticModuleName := Some("scala.collection.contrib"),
1818
scalacOptions ++= Seq("-opt-warnings", "-language:higherKinds", "-deprecation", "-feature", "-Xfatal-warnings"),
19-
scalacOptions in (Compile, doc) ++= Seq("-implicits", "-groups"),
19+
Compile / doc / scalacOptions ++= Seq("-implicits", "-groups"),
2020
testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "-v", "-s", "-a"),
21-
parallelExecution in Test := false, // why?
21+
Test / parallelExecution := false, // why?
2222
libraryDependencies ++= Seq(
2323
"junit" % "junit" % "4.13.2" % Test,
2424
"com.novocode" % "junit-interface" % "0.11" % Test,
@@ -27,7 +27,7 @@ lazy val collectionContrib = crossProject(JVMPlatform, JSPlatform)
2727
.jsEnablePlugins(ScalaJSJUnitPlugin)
2828
.jsSettings(
2929
// Scala.js cannot run forked tests
30-
fork in Test := false
30+
Test / fork := false
3131
)
3232

3333
lazy val collectionContribJVM = collectionContrib.jvm

0 commit comments

Comments
 (0)