From cfec32746da374d3a2cdbd07b54304d55361f923 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 18 May 2024 07:27:17 -0500 Subject: [PATCH] Fix shading for MC 1.20.6 IE Java 21 --- api/build.gradle | 2 +- core/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/build.gradle b/api/build.gradle index 9172e5bf8..f99bde859 100644 --- a/api/build.gradle +++ b/api/build.gradle @@ -3,7 +3,7 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar plugins { id "java" - id "com.github.johnrengelman.shadow" version '7.1.2' apply false + id "com.github.johnrengelman.shadow" version '8.1.1' apply false } diff --git a/core/build.gradle b/core/build.gradle index 7e3e9ac7a..b4f6a5325 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -1,6 +1,6 @@ plugins { id "java" - id "com.github.johnrengelman.shadow" version '7.1.2' apply false // Set this to true if you're using the standalone Core project + id "com.github.johnrengelman.shadow" version '8.1.1' apply false // Set this to true if you're using the standalone Core project } apply plugin: "application"