This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch issue/SLING-12927 in repository https://gitbox.apache.org/repos/asf/sling-tooling-jenkins.git
commit bbf956f54bfa2fef304a248ebc98c8e951c7fdad Author: Robert Munteanu <[email protected]> AuthorDate: Fri Sep 5 09:51:59 2025 +0200 SLING-12927 - Allow building on Jenkins with JDKs 23-26 --- vars/slingOsgiBundleBuild.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vars/slingOsgiBundleBuild.groovy b/vars/slingOsgiBundleBuild.groovy index 1fda4dc..ca5e0a5 100644 --- a/vars/slingOsgiBundleBuild.groovy +++ b/vars/slingOsgiBundleBuild.groovy @@ -7,7 +7,8 @@ def call(Map params = [:]) { availableJDKs : [ 8: 'jdk_1.8_latest', 9: 'jdk_1.9_latest', 10: 'jdk_10_latest', 11: 'jdk_11_latest', 12: 'jdk_12_latest', 13: 'jdk_13_latest', 14: 'jdk_14_latest', 15: 'jdk_15_latest', 16: 'jdk_16_latest', 17: 'jdk_17_latest', 18: 'jdk_18_latest', 19: 'jdk_19_latest', - 20: 'jdk_20_latest', 21: 'jdk_21_latest', 22: 'jdk_22_latest'], + 20: 'jdk_20_latest', 21: 'jdk_21_latest', 22: 'jdk_22_latest', 23: 'jdk_23_latest', + 24: 'jdk_24_latest', 25: 'jdk_25_latest', 26: 'jdk_26_latest' ], // https://cwiki.apache.org/confluence/x/cRTiAw mvnVersion : 'maven_3_latest', // maps values to node labels (available ones in https://cwiki.apache.org/confluence/x/ViZ4CQ)
