We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72066f3 commit 3cf8a52Copy full SHA for 3cf8a52
1 file changed
build.sbt
@@ -17,7 +17,8 @@ val buildSettings = Seq[Setting[_]](
17
// JVM options for building
18
scalacOptions ++= Seq("-encoding", "UTF-8", "-deprecation", "-unchecked", "-feature"),
19
javaOptions in Test ++= Seq("-ea"),
20
- javacOptions in (Compile, compile) ++= Seq("-encoding", "UTF-8", "-Xlint:unchecked", "-Xlint:deprecation", "-source", "1.7", "-target", "1.7"),
+ javacOptions ++= Seq("-source", "1.7", "-target", "1.7"),
21
+ javacOptions in (Compile, compile) ++= Seq("-encoding", "UTF-8", "-Xlint:unchecked", "-Xlint:deprecation"),
22
// Use lenient validation mode when generating Javadoc (for Java8)
23
javacOptions in doc := {
24
val opts = Seq("-source", "1.7")
0 commit comments