package: strip jar specific files when shading

these files will make the jar incorrect if copied blindly.
the maven-shade-plugin has similar logic
This commit is contained in:
Max Weber
2022-06-15 19:41:13 -06:00
parent 2627286f6c
commit 7b713b19a8

View File

@@ -62,6 +62,9 @@ allprojects {
it.isDirectory() ? it : project.zipTree(it)
}
}
exclude "META-INF/INDEX.LIST"
exclude "**/module-info.class"
}
task runelitePluginHubManifest {