Skip to content

Commit

Permalink
Fix missing CustomChart error
Browse files Browse the repository at this point in the history
Not sure why this broke -- it's been working for a while now. Nonetheless

Closes #29 and #30
  • Loading branch information
HeroCC committed Feb 25, 2024
1 parent b161ce9 commit cc53a7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,12 @@ shadowJar {
dependencies {
include dependency('com.github.HeroiCraft:Updater')
include dependency('org.bstats:bstats-bukkit')
include dependency('org.bstats:bstats-base')
include dependency('io.papermc:paperlib')
include dependency('net.milkbowl.vault:VaultAPI')
}
dependencies {
relocate('org.bstats.bukkit', packagePath + '.dependencies.bstats')
relocate('org.bstats', packagePath + '.dependencies.bstats')
relocate('io.papermc.lib', packagePath + '.dependencies.paperlib')
relocate('net.gravitydevelopment.updater', packagePath + '.dependencies.updater')
relocate('net.milkbowl.vault', packagePath + '.dependencies.vault')
Expand Down

0 comments on commit cc53a7c

Please sign in to comment.