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' } ```