@@ -30,7 +30,7 @@ lazy val testNativeSettings: Seq[Setting[_]] = Seq(
3030 // Required by Scala Native testing infrastructure
3131 Test / fork := false ,
3232)
33-
33+
3434lazy val core = projectMatrix.in(file(" core" ))
3535 .settings(commonSettings)
3636 .settings(
@@ -49,7 +49,7 @@ lazy val junit = projectMatrix.in(file("junit"))
4949 testOptions += Tests .Argument (TestFrameworks .JUnit , " -a" , " -v" ),
5050 publish / skip := true ,
5151 ).dependsOn(testmacros, core)
52- .jvmPlatform(matrixScalaVersions,
52+ .jvmPlatform(matrixScalaVersions,
5353 settings = Seq (
5454 libraryDependencies += " com.github.sbt" % " junit-interface" % " 0.13.3" % Test ,
5555 libraryDependencies += " junit" % " junit" % " 4.13.2" % Test ,
@@ -58,20 +58,20 @@ lazy val junit = projectMatrix.in(file("junit"))
5858 Test / fork := true ,
5959 )
6060 )
61- .nativePlatform(matrixScalaVersions,
61+ .nativePlatform(matrixScalaVersions,
6262 axisValues = Nil ,
6363 configure = _
6464 .enablePlugins(ScalaNativeJUnitPlugin )
6565 .settings(
66- Test / unmanagedSources/ excludeFilter ~= { _ ||
66+ Test / unmanagedSources/ excludeFilter ~= { _ ||
6767 " SerializationTest.scala" || // requires ObjectOutputStream
6868 " SerializationStability.scala" || // requires jaxb-api
6969 " SerializationStabilityBase.scala" ||
7070 " SerializationStabilityTest.scala"
7171 },
7272 Test / fork := false
7373 )
74- )
74+ )
7575
7676lazy val scalacheck = projectMatrix.in(file(" scalacheck" ))
7777 .settings(commonSettings)
@@ -109,7 +109,7 @@ commands += Command.single("setScalaVersion") { (state, arg) =>
109109}
110110
111111import sbt .internal .{ProjectMatrix , ProjectFinder }
112- def testPlatformCommand (name : String , selector : ProjectMatrix => ProjectFinder ): Command =
112+ def testPlatformCommand (name : String , selector : ProjectMatrix => ProjectFinder ): Command =
113113 Command .command(name) { state =>
114114 List (junit, scalacheck, testmacros)
115115 .flatMap(selector(_).get)
0 commit comments