1
0
mirror of https://github.com/chylex/Java-Checker.git synced 2025-08-25 20:35:09 +02:00

Automatically remove mcmod.info from shade jar

This commit is contained in:
2016-01-10 21:21:12 +01:00
parent 36e0c3e456
commit 87b0690aef

@@ -50,7 +50,9 @@ task java8Jar(type: Jar, dependsOn: "jar"){
}
task shadeJar(type: Jar, dependsOn: "jar"){
from sourceSets.main.output
from(sourceSets.main.output){
exclude "mcmod.info"
}
archiveName = "JavaCheckerShade"+archiveSuffix
}