@@ -7,11 +7,11 @@ lazy val root = project.in(file("."))
77 .aggregate(`scala-parser-combinatorsJS`, `scala-parser-combinatorsJVM`, `scala-parser-combinatorsNative`)
88 .settings(disablePublishing)
99
10- lazy val `scala-parser-combinators` = crossProject(JSPlatform , JVMPlatform , NativePlatform ).
11- withoutSuffixFor(JVMPlatform ).in(file(" ." )).
12- settings(scalaModuleSettings : _* ).
13- jvmSettings(scalaModuleSettingsJVM).
14- settings(
10+ lazy val `scala-parser-combinators` = crossProject(JSPlatform , JVMPlatform , NativePlatform )
11+ . withoutSuffixFor(JVMPlatform ).in(file(" ." ))
12+ . settings(scalaModuleSettings : _* )
13+ . jvmSettings(scalaModuleSettingsJVM)
14+ . settings(
1515 name := " scala-parser-combinators" ,
1616 version := " 1.2.0-SNAPSHOT" ,
1717 mimaPreviousVersion := None ,
@@ -38,18 +38,18 @@ lazy val `scala-parser-combinators` = crossProject(JSPlatform, JVMPlatform, Nati
3838 }
3939 }
4040 }
41- ).
42- jvmSettings(
41+ )
42+ . jvmSettings(
4343 OsgiKeys .exportPackage := Seq (s " scala.util.parsing.*;version= ${version.value}" ),
4444 libraryDependencies += " junit" % " junit" % " 4.12" % Test ,
4545 libraryDependencies += " com.novocode" % " junit-interface" % " 0.11" % Test
46- ).
47- jsSettings(
46+ )
47+ . jsSettings(
4848 // Scala.js cannot run forked tests
4949 fork in Test := false
50- ).
51- jsConfigure(_.enablePlugins(ScalaJSJUnitPlugin )).
52- nativeSettings(
50+ )
51+ . jsConfigure(_.enablePlugins(ScalaJSJUnitPlugin ))
52+ . nativeSettings(
5353 skip in compile := System .getProperty(" java.version" ).startsWith(" 1.6" ) || ! scalaVersion.value.startsWith(" 2.11" ),
5454 test := {},
5555 libraryDependencies := {
0 commit comments