Commit d7452bf
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
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
0 commit comments