From f1f0594b546b374348a8509815fe8b93936a82d8 Mon Sep 17 00:00:00 2001 From: Mark Waite Date: Sat, 26 Aug 2023 05:27:33 -0600 Subject: [PATCH] Test with Java 21 and Java 17 Low risk of a Java 11 regression in this plugin --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 22a78e9..52525eb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,6 @@ buildPlugin( useContainerAgent: true, configurations: [ - [platform: 'linux', jdk: 17], - [platform: 'windows', jdk: 11], + [platform: 'linux', jdk: 21], + [platform: 'windows', jdk: 17], ])