We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dcd4e9 commit fdfbde7Copy full SHA for fdfbde7
build.sbt
@@ -20,6 +20,15 @@ licenses := Seq("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"
20
publishMavenStyle := true
21
scalacOptions ++= Seq("-deprecation", "-feature", "-language:implicitConversions")
22
23
+scalacOptions ++= {
24
+ scalaBinaryVersion.value match {
25
+ case "3" =>
26
+ Nil
27
+ case _ =>
28
+ Seq("-release:8")
29
+ }
30
+}
31
+
32
val unusedWarnings = Def.setting(
33
scalaBinaryVersion.value match {
34
case "2.12" =>
0 commit comments