Skip to content
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.

Commit

Permalink
JDK-8209966: Update minimum boot JDK to 11 (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrushforth committed Sep 25, 2018
1 parent 25fcdad commit f250fbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3795,10 +3795,8 @@ task javadoc(type: Javadoc, dependsOn: createMSPfile) {
]);

doLast {
// FIXME: remove JDK 10 logic once minimum JDK is bumped to 11
def isBootJdk10 = jdkVersion.startsWith("10")
projectsToDocument.each { p ->
def destDir = isBootJdk10 ? "$buildDir/javadoc" : "$buildDir/javadoc/${p.ext.moduleName}"
def destDir = "$buildDir/javadoc/${p.ext.moduleName}"
copy {
from("$p.projectDir/src/main/docs") {
include "**/*.html"
Expand Down
4 changes: 2 additions & 2 deletions build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,5 @@ javadoc.header=JavaFX 12
#
##############################################################################

jfx.build.jdk.version.min=10
jfx.build.jdk.buildnum.min=46
jfx.build.jdk.version.min=11
jfx.build.jdk.buildnum.min=28

0 comments on commit f250fbf

Please sign in to comment.