From c6b1b6589195ffcdadb4661ed6493968e420b817 Mon Sep 17 00:00:00 2001 From: Goooler Date: Tue, 30 Dec 2025 15:03:31 +0800 Subject: [PATCH] Migrate Shadow plugin id The project repo has been transformed to https://github.com/GradleUp/shadow, and the plugin id has been updated to https://plugins.gradle.org/plugin/com.gradleup.shadow. --- docs/docs/develop/build-client.mdx | 4 ++-- docs/docs/develop/build-server.mdx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/develop/build-client.mdx b/docs/docs/develop/build-client.mdx index 001192fa9..9397b6bdc 100644 --- a/docs/docs/develop/build-client.mdx +++ b/docs/docs/develop/build-client.mdx @@ -1120,13 +1120,13 @@ Also, add the following plugins to your build script: ```kotlin build.gradle.kts plugins { - id("com.github.johnrengelman.shadow") version "8.1.1" + id("com.gradleup.shadow") version "8.3.9" } ``` ```groovy build.gradle plugins { - id 'com.github.johnrengelman.shadow' version '8.1.1' + id 'com.gradleup.shadow' version '8.3.9' } ``` diff --git a/docs/docs/develop/build-server.mdx b/docs/docs/develop/build-server.mdx index 7f04cf886..bea14c044 100644 --- a/docs/docs/develop/build-server.mdx +++ b/docs/docs/develop/build-server.mdx @@ -1233,14 +1233,14 @@ Also, add the following plugins to your build script: ```kotlin build.gradle.kts plugins { kotlin("plugin.serialization") version "your_version_of_kotlin" - id("com.github.johnrengelman.shadow") version "8.1.1" + id("com.gradleup.shadow") version "8.3.9" } ``` ```groovy build.gradle plugins { id 'org.jetbrains.kotlin.plugin.serialization' version 'your_version_of_kotlin' - id 'com.github.johnrengelman.shadow' version '8.1.1' + id 'com.gradleup.shadow' version '8.3.9' } ```