We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15a5090 commit 953e6f2Copy full SHA for 953e6f2
mimic-bukkit/build.gradle.kts
@@ -42,7 +42,16 @@ dependencies {
42
}
43
44
tasks.shadowJar {
45
- relocate("co.aikar.commands", "${group}.shade.acf")
+ val shadePackage = "${project.group}.shade"
46
+ relocate("co.aikar", "$shadePackage.acf")
47
+ relocate("kotlin", "$shadePackage.kotlin")
48
+ relocate("org.intellij", "$shadePackage.intellij")
49
+ relocate("org.jetbrains", "$shadePackage.jetbrains")
50
+
51
+ exclude("META-INF/*.kotlin_module")
52
+ exclude("META-INF/maven/**")
53
54
+ minimize()
55
56
57
tasks.named("assemble") {
0 commit comments