Skip to content

Commit

Permalink
breaking: Drop JDK8 Support and build for JDK11 or later (#3192)
Browse files Browse the repository at this point in the history
  • Loading branch information
xerial authored Sep 29, 2023
1 parent f033ce4 commit 72877c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion airspec/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ val buildSettings = Seq[Setting[_]](
crossScalaVersions := targetScalaVersions,
crossPaths := true,
publishMavenStyle := true,
javacOptions ++= Seq("-source", "1.8", "-target", "1.8"),
javacOptions ++= Seq("-source", "11", "-target", "11"),
scalacOptions ++= Seq(
"-feature",
"-deprecation"
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ val buildSettings = Seq[Setting[_]](
ProblemFilters.exclude[MissingClassProblem]("wvlet.airframe.http.internal.*")
)
},
javacOptions ++= Seq("-source", "8", "-target", "8"),
javacOptions ++= Seq("-source", "11", "-target", "11"),
scalacOptions ++= Seq(
"-feature",
"-deprecation"
Expand Down
2 changes: 1 addition & 1 deletion sbt-airframe/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ val buildSettings = Seq[Setting[_]](
crossPaths := true,
publishMavenStyle := true,
publishTo := sonatypePublishToBundle.value,
javacOptions ++= Seq("-source", "1.8", "-target", "1.8"),
javacOptions ++= Seq("-source", "11", "-target", "11"),
scalacOptions ++= Seq(
"-feature",
"-deprecation",
Expand Down

0 comments on commit 72877c6

Please sign in to comment.