Skip to content

Commit 0fbb9a9

Browse files
committed
remove javacOptions from build
there are no Java sources in this project perhaps whoever added this meant scalacOptions, and was trying to ensure that the library worked on Java 6? I think it is fine to require Java 8 now, in 2017.
1 parent 0449704 commit 0fbb9a9

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

build.sbt

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,6 @@ publishMavenStyle := false
2424

2525
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature")
2626

27-
javacOptions in (Compile, doc) ++=
28-
(CrossVersion.partialVersion(scalaVersion.value) match {
29-
case Some ((2, n)) if n <= 11 =>
30-
Seq("-target", "1.6", "-source", "1.6")
31-
case _ =>
32-
Seq()
33-
})
34-
3527
licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.html"))
3628

3729
libraryDependencies ++= Seq(

0 commit comments

Comments
 (0)