From 1321a004a135bad331e87e871fc2ceae1e88b2d5 Mon Sep 17 00:00:00 2001 From: Alexander Brandes Date: Mon, 30 Dec 2024 21:30:03 +0100 Subject: [PATCH] Release as java 21 Signed-off-by: Alexander Brandes --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- build.gradle.kts | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index cedd4344f0..fe05da3c66 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -27,7 +27,7 @@ body: description: Which server version are you using? If your server version is not listed, it is not supported. Update to a supported version first. multiple: false options: - - '1.21.3' + - '1.21.4' - '1.21.1' - '1.20.6' - '1.20.4' diff --git a/build.gradle.kts b/build.gradle.kts index 37a4bd5ea7..71fe8e897c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -89,10 +89,6 @@ subprojects { } } - tasks.compileJava.configure { - options.release.set(17) - } - configurations.all { attributes.attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 21) } @@ -230,7 +226,7 @@ tasks.getByName("jar") { enabled = false } -val supportedVersions = listOf("1.18.2", "1.19.4", "1.20.6", "1.21.1", "1.21.3") +val supportedVersions = listOf("1.18.2", "1.19.4", "1.20.6", "1.21.1", "1.21.4") tasks { register("cacheLatestFaweArtifact") { val lastSuccessfulBuildUrl = uri("https://ci.athion.net/job/FastAsyncWorldEdit/lastSuccessfulBuild/api/json").toURL()