From 7f2d08557f196d9e246a13886dea1e1ae4d3d9c9 Mon Sep 17 00:00:00 2001 From: Andrew Ross Date: Wed, 5 Jun 2024 23:19:28 +0000 Subject: [PATCH] Set JDK21 as the baseline for the 3.0 major version Resolves #581 Signed-off-by: Andrew Ross --- .github/workflows/build.yml | 4 ---- build.gradle | 4 ++-- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a3fd4b16..11ee7e56 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,8 +19,6 @@ jobs: strategy: matrix: java: - - 11 - - 17 - 21 # Job name name: Build Asynchronous Search @@ -68,8 +66,6 @@ jobs: strategy: matrix: java: - - 11 - - 17 - 21 # Job name name: Test Asynchronous Search with opensearchstaging docker diff --git a/build.gradle b/build.gradle index 0894088e..77a49242 100644 --- a/build.gradle +++ b/build.gradle @@ -82,8 +82,8 @@ ext { } java { - sourceCompatibility = JavaVersion.VERSION_11 - targetCompatibility = JavaVersion.VERSION_11 + sourceCompatibility = JavaVersion.VERSION_21 + targetCompatibility = JavaVersion.VERSION_21 } allprojects {