diff --git a/build-logic/build.gradle.kts b/build-logic/build.gradle.kts index 4733ddfa3..8bb9ab726 100644 --- a/build-logic/build.gradle.kts +++ b/build-logic/build.gradle.kts @@ -8,5 +8,5 @@ repositories { dependencies { // version must be manually kept in sync with the one in root project settings.gradle.kts - implementation("com.github.johnrengelman", "shadow", "8.1.1") + implementation("com.gradleup.shadow", "shadow-gradle-plugin", "8.3.0") } diff --git a/build-logic/src/main/kotlin/via.shadow-conventions.gradle.kts b/build-logic/src/main/kotlin/via.shadow-conventions.gradle.kts index d3d04250e..c113fed4e 100644 --- a/build-logic/src/main/kotlin/via.shadow-conventions.gradle.kts +++ b/build-logic/src/main/kotlin/via.shadow-conventions.gradle.kts @@ -4,7 +4,7 @@ import org.gradle.jvm.tasks.Jar plugins { id("via.base-conventions") id("maven-publish") - id("com.github.johnrengelman.shadow") + id("com.gradleup.shadow") } tasks { diff --git a/settings.gradle.kts b/settings.gradle.kts index 355642975..169cccbc6 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -16,7 +16,7 @@ pluginManagement { plugins { id("net.kyori.blossom") version "2.1.0" id("org.jetbrains.gradle.plugin.idea-ext") version "1.1.7" - id("com.github.johnrengelman.shadow") version "8.1.1" + id("com.gradleup.shadow") version "8.3.0" } }