We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3f3e70 commit 2db9f89Copy full SHA for 2db9f89
project/plugins.sbt
@@ -1,3 +1,10 @@
1
addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "1.0.14")
2
3
-addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.22")
+if (System.getProperty("java.version").startsWith("1."))
4
+ Seq()
5
+else
6
+ // override to version that works on Java 9,
7
+ // see https://github.com/scala/sbt-scala-module/issues/35
8
+ Seq(addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.3"))
9
+
10
+addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.23")
0 commit comments