Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ad679d8

Browse files
committedApr 19, 2019
Move .s to the next lines
1 parent 165ca50 commit ad679d8

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed
 

‎build.sbt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)
Please sign in to comment.