Skip to content

Commit

Permalink
Merge pull request #15 from OneLiteFeatherNET/bugfix/relocation-fix
Browse files Browse the repository at this point in the history
Fix relocation of dependencies
  • Loading branch information
TheMeinerLP authored Jun 7, 2024
2 parents bfb8f1c + 917da42 commit 0687cf7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,10 @@ tasks {
shadowJar {
archiveClassifier.set("")
dependencies {
relocate("com.cryptomorin.xseries", "$group.xseries")
relocate("org.incendo.serverlib", "$group.serverlib")
relocate("org.bstats", "$group.metrics")
relocate("io.papermc.lib", "$group.paperlib")
relocate("com.cryptomorin.xseries", "${rootProject.group}.xseries")
relocate("org.incendo.serverlib", "${rootProject.group}.serverlib")
relocate("org.bstats", "${rootProject.group}.metrics")
relocate("io.papermc.lib", "${rootProject.group}.paperlib")
}
}
build {
Expand Down

0 comments on commit 0687cf7

Please sign in to comment.