From 3afa8b13364d32721141c2e5d0b9be7b4adf99be 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 c9e1cc9..1a96e6b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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'] * @@ -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( diff --git a/book/Jenkinsfile b/book/Jenkinsfile index bc5e692..3ef859d 100644 --- a/book/Jenkinsfile +++ b/book/Jenkinsfile @@ -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'] * @@ -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(