@@ -16,9 +16,9 @@ lazy val collectionContrib = crossProject(JVMPlatform, JSPlatform)
16
16
versionPolicyIntention := Compatibility .BinaryCompatible ,
17
17
scalaModuleAutomaticModuleName := Some (" scala.collection.contrib" ),
18
18
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" ),
20
20
testOptions += Tests .Argument (TestFrameworks .JUnit , " -q" , " -v" , " -s" , " -a" ),
21
- parallelExecution in Test := false , // why?
21
+ Test / parallelExecution := false , // why?
22
22
libraryDependencies ++= Seq (
23
23
" junit" % " junit" % " 4.13.2" % Test ,
24
24
" com.novocode" % " junit-interface" % " 0.11" % Test ,
@@ -27,7 +27,7 @@ lazy val collectionContrib = crossProject(JVMPlatform, JSPlatform)
27
27
.jsEnablePlugins(ScalaJSJUnitPlugin )
28
28
.jsSettings(
29
29
// Scala.js cannot run forked tests
30
- fork in Test := false
30
+ Test / fork := false
31
31
)
32
32
33
33
lazy val collectionContribJVM = collectionContrib.jvm
0 commit comments