From 1ceda902d3a4c9c350e2c0a5ea500de06d815491 Mon Sep 17 00:00:00 2001 From: Mark Waite Date: Sat, 7 Oct 2023 17:22:16 -0600 Subject: [PATCH] Test with Java 21 Java 21 released Sep 19, 2023. We'd like to announce full support for Java 21 in early October and would like the most used plugins to be compiling and testing with Java 21. The acceptance test harness and plugin bill of materials tests are already passing with Java 21. This is a further step to improve plugin readiness for use with Java 21 and for development with Java 21. Java 11 will be unsupported by Eclipse Temurin and some other Java providers in October 2024. We'll need to move past Java 11 by that time. It does not change the supported Java version or the byte code that is being generated. --- Jenkinsfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d40153e..8eb2b78 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,5 @@ buildPlugin(configurations: [ - [platform: 'linux', jdk: '11'], - [platform: 'windows', jdk: '11'], -]) \ No newline at end of file + [platform: 'linux', jdk: 21], + [platform: 'linux', jdk: 11], + [platform: 'windows', jdk: 17], +])