@@ -7,11 +7,11 @@ lazy val root = project.in(file("."))
7
7
.aggregate(`scala-parser-combinatorsJS`, `scala-parser-combinatorsJVM`, `scala-parser-combinatorsNative`)
8
8
.settings(disablePublishing)
9
9
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(
15
15
name := " scala-parser-combinators" ,
16
16
version := " 1.2.0-SNAPSHOT" ,
17
17
mimaPreviousVersion := None ,
@@ -38,18 +38,18 @@ lazy val `scala-parser-combinators` = crossProject(JSPlatform, JVMPlatform, Nati
38
38
}
39
39
}
40
40
}
41
- ).
42
- jvmSettings(
41
+ )
42
+ . jvmSettings(
43
43
OsgiKeys .exportPackage := Seq (s " scala.util.parsing.*;version= ${version.value}" ),
44
44
libraryDependencies += " junit" % " junit" % " 4.12" % Test ,
45
45
libraryDependencies += " com.novocode" % " junit-interface" % " 0.11" % Test
46
- ).
47
- jsSettings(
46
+ )
47
+ . jsSettings(
48
48
// Scala.js cannot run forked tests
49
49
fork in Test := false
50
- ).
51
- jsConfigure(_.enablePlugins(ScalaJSJUnitPlugin )).
52
- nativeSettings(
50
+ )
51
+ . jsConfigure(_.enablePlugins(ScalaJSJUnitPlugin ))
52
+ . nativeSettings(
53
53
skip in compile := System .getProperty(" java.version" ).startsWith(" 1.6" ) || ! scalaVersion.value.startsWith(" 2.11" ),
54
54
test := {},
55
55
libraryDependencies := {
0 commit comments