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 369b6b8 commit 3afa8b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Expand Up @@ -60,7 +60,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 @@ -157,7 +157,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
Expand Up @@ -65,7 +65,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 @@ -162,7 +162,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 3afa8b1

Please sign in to comment.