Skip to content

Commit

Permalink
Changed deployJdk from 17 to 20
Browse files Browse the repository at this point in the history
JDK 20 fixes reproducible javadocs https://bugs.openjdk.org/browse/JDK-8292892
  • Loading branch information
ao-apps committed Sep 10, 2023
1 parent ecf1845 commit 9caabe9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def upstreamProjects = [
* Variables that may be defined above this block: *
* *
* deployJdk The version of JDK that will be used for the deploy stage. *
* Defaults to '17' *
* Defaults to '20' *
* *
* buildJdks The array of JDK versions that will build. *
* Defaults to ['11', '17', '20'] *
Expand Down Expand Up @@ -158,7 +158,7 @@ def upstreamProjects = [

// JDK versions
if (!binding.hasVariable('deployJdk')) {
binding.setVariable('deployJdk', '17')
binding.setVariable('deployJdk', '20')
}
if (!binding.hasVariable('buildJdks')) {
binding.setVariable(
Expand Down
4 changes: 2 additions & 2 deletions book/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def upstreamProjects = [
* Variables that may be defined above this block: *
* *
* deployJdk The version of JDK that will be used for the deploy stage. *
* Defaults to '17' *
* Defaults to '20' *
* *
* buildJdks The array of JDK versions that will build. *
* Defaults to ['11', '17', '20'] *
Expand Down Expand Up @@ -156,7 +156,7 @@ def upstreamProjects = [

// JDK versions
if (!binding.hasVariable('deployJdk')) {
binding.setVariable('deployJdk', '17')
binding.setVariable('deployJdk', '20')
}
if (!binding.hasVariable('buildJdks')) {
binding.setVariable(
Expand Down

0 comments on commit 9caabe9

Please sign in to comment.