From b741a015fc259e9b932d701f534d10b2d88aacab Mon Sep 17 00:00:00 2001 From: Lehmann_Fabian Date: Thu, 1 Aug 2024 16:44:31 +0200 Subject: [PATCH] Test Java 11, 17, and 21 Signed-off-by: Lehmann_Fabian --- Jenkinsfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9d545b0..7e3ccbe 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,10 @@ buildPlugin( useContainerAgent: true, configurations: [ + [platform: 'linux', jdk: 11], [platform: 'linux', jdk: 17], + [platform: 'linux', jdk: 21], [platform: 'windows', jdk: 11], -]) \ No newline at end of file + [platform: 'windows', jdk: 17], + [platform: 'windows', jdk: 21], +])