From 58676e55c88f330a73613f186a428a735c50a640 Mon Sep 17 00:00:00 2001 From: Mark Waite Date: Thu, 5 Oct 2023 19:21:35 -0600 Subject: [PATCH] Test Java 21 and Java 17 --- Jenkinsfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 022ff07..27c93e9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,6 @@ * https://github.com/jenkins-infra/pipeline-library/ */ buildPlugin(useContainerAgent: true, configurations: [ - [ platform: 'linux', jdk: '8' ], - [ platform: 'linux', jdk: '11' ], - [ platform: 'windows', jdk: '11' ], + [ platform: 'linux', jdk: 21 ], + [ platform: 'windows', jdk: 17 ], ])