We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 139f184 + e82d152 commit d99107eCopy full SHA for d99107e
project/plugins.sbt
@@ -1,3 +1,8 @@
1
-scalacOptions += "-Xfatal-warnings"
+scalacOptions ++= (sys.props("java.specification.version") match {
2
+ // work around weird dbuild thing for JDK 12 community build; see
3
+ // https://github.com/scala/community-builds/issues/862#issuecomment-464227096
4
+ case "12" => Seq()
5
+ case _ => Seq("-Xfatal-warnings")
6
+})
7
8
addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "1.0.14")
0 commit comments