diff --git a/minecraft/build.gradle b/minecraft/build.gradle index eda7759..e12a3de 100644 --- a/minecraft/build.gradle +++ b/minecraft/build.gradle @@ -1,4 +1,20 @@ apply from: "$rootDir/gradle/publish.gradle" group 'com.georgev22.library' + +dependencies { + implementation project(path: ':minecraft:bukkit') + implementation project(path: ':minecraft:bungee') + implementation project(path: ':minecraft:velocity') + implementation project(path: ':minecraft:sponge8') +} + +shadowJar { + classifier = '' + exclude("de/tr7zw/nbtapi/plugin/**") + exclude("plugin.yml") + relocate 'de.tr7zw', 'com.georgev22.library.minecraft.nbt' + relocate 'com.cryptomorin.xseries', 'com.georgev22.library.minecraft.xseries' +} + tasks.build.dependsOn(shadowJar) tasks.publish.dependsOn(shadowJar) \ No newline at end of file