1
0
mirror of https://github.com/chylex/Java-Checker.git synced 2025-06-10 10:34:03 +02:00

Automatically remove mcmod.info from shade jar

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

View File

@ -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
}