From c255396a5327691c5a515b93fd63320bab9232e3 Mon Sep 17 00:00:00 2001 From: Michael DOUBEZ Date: Fri, 26 Jul 2024 15:26:40 +0200 Subject: [PATCH] Compile with java 21 --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d8d60af5..ebe4cbaa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,6 +3,7 @@ buildPlugin(useContainerAgent: true, // See https://github.com/jenkins-infra/helpdesk/issues/2752 for more details and updates. artifactCachingProxyEnabled: true, configurations: [ - [platform: 'linux', jdk: 17], - [platform: 'windows', jdk: 11], + [platform: 'linux', jdk: 21], + [platform: 'linux', jdk: 11], + [platform: 'windows', jdk: 17], ])