From 9caabe96144bef66e555e378db986b2c6e738cab Mon Sep 17 00:00:00 2001 From: "AO Industries, Inc" Date: Sun, 10 Sep 2023 11:17:01 +0000 Subject: [PATCH] Changed deployJdk from 17 to 20 JDK 20 fixes reproducible javadocs https://bugs.openjdk.org/browse/JDK-8292892 --- Jenkinsfile | 4 ++-- book/Jenkinsfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c28dec2..e4e1732 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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'] * @@ -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( diff --git a/book/Jenkinsfile b/book/Jenkinsfile index 37d68e1..3314226 100644 --- a/book/Jenkinsfile +++ b/book/Jenkinsfile @@ -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'] * @@ -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(