Skip to content

Commit 68ed69e

Browse files
committed
Update instructions for shading with Gradle
1 parent 41e1e77 commit 68ed69e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docssrc/src/setup_shading.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,21 +178,21 @@ As we're shading the CommandAPI into your plugin, you **don't** need to add `dep
178178

179179
## Shading with Gradle
180180

181-
To shade the CommandAPI into a Gradle project, we'll use the [Goooler Gradle Shadow Plugin](https://plugins.gradle.org/plugin/io.github.goooler.shadow). This is a fork of the [Shadow Plugin](https://imperceptiblethoughts.com/shadow/) which supports Java 21. Add this to your list of plugins:
181+
To shade the CommandAPI into a Gradle project, we'll use the [GradleUp Shadow Plugin](https://gradleup.com/shadow/). Add this to your list of plugins:
182182
183183
<div class="multi-pre">
184184
185185
```groovy,build.gradle
186186
plugins {
187187
id 'java'
188-
id 'io.github.goooler.shadow' version '8.1.7'
188+
id 'com.gradleup.shadow' version '8.3.3'
189189
}
190190
```
191191
192192
```kotlin,build.gradle.kts
193193
plugins {
194194
java
195-
id("io.github.goooler.shadow") version "8.1.7"
195+
id("com.gradleup.shadow") version "8.3.3"
196196
}
197197
```
198198

0 commit comments

Comments
 (0)