Skip to content

Commit d7452bf

Browse files
CopilotJRoy
andauthored
Fix stale shadow include group ID for emoji-java in EssentialsDiscord (#6467)
Commit 297d0e4 migrated `emoji-java` from Jitpack (`com.github.MinnDevelopment`) to EssentialsX's own Maven repo (`net.essentialsx.deps`), but the `include(dependency(...))` in the `shadowJar` block was not updated to match, leaving the shadow JAR unable to locate and bundle the dependency. ### Details **Proposed fix:** - Updated `EssentialsDiscord/build.gradle` shadowJar include to use the correct group ID: ```groovy // Before include(dependency('com.github.MinnDevelopment:emoji-java')) // After include(dependency('net.essentialsx.deps:emoji-java')) ``` **Environments tested:** OS: Java version: - [ ] Most recent Paper version (1.XX.Y, git-Paper-BUILD) - [ ] CraftBukkit/Spigot/Paper 1.12.2 - [ ] CraftBukkit 1.8.8 **Demonstration:** <!-- START COPILOT CODING AGENT SUFFIX --> <!-- START COPILOT ORIGINAL PROMPT --> <details> <summary>Original prompt</summary> > never updated the shadow include group id here pls fix > > Reference: 297d0e4 </details> <!-- START COPILOT CODING AGENT TIPS --> --- 📱 Kick off Copilot coding agent tasks wherever you are with [GitHub Mobile](https://gh.io/cca-mobile-docs), available on iOS and Android. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: JRoy <10731363+JRoy@users.noreply.github.com>
1 parent 482175e commit d7452bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

EssentialsDiscord/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ shadowJar {
3232
include(dependency('org.jetbrains.kotlin:kotlin-stdlib'))
3333

3434
// Emoji
35-
include(dependency('com.github.MinnDevelopment:emoji-java'))
35+
include(dependency('net.essentialsx.deps:emoji-java'))
3636
include(dependency('org.json:json'))
3737

3838
// discord-webhooks

0 commit comments

Comments
 (0)