Skip to content

Commit 0687cf7

Browse files
authored
Merge pull request #15 from OneLiteFeatherNET/bugfix/relocation-fix
Fix relocation of dependencies
2 parents bfb8f1c + 917da42 commit 0687cf7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,10 @@ tasks {
126126
shadowJar {
127127
archiveClassifier.set("")
128128
dependencies {
129-
relocate("com.cryptomorin.xseries", "$group.xseries")
130-
relocate("org.incendo.serverlib", "$group.serverlib")
131-
relocate("org.bstats", "$group.metrics")
132-
relocate("io.papermc.lib", "$group.paperlib")
129+
relocate("com.cryptomorin.xseries", "${rootProject.group}.xseries")
130+
relocate("org.incendo.serverlib", "${rootProject.group}.serverlib")
131+
relocate("org.bstats", "${rootProject.group}.metrics")
132+
relocate("io.papermc.lib", "${rootProject.group}.paperlib")
133133
}
134134
}
135135
build {

0 commit comments

Comments
 (0)