No longer shading META-INF, fixes Sponge Mixin not finding the obfuscation service
This commit is contained in:
parent
aa483181c0
commit
2c47c29df9
1 changed files with 7 additions and 2 deletions
|
@ -56,10 +56,11 @@ dependencies {
|
||||||
shade 'cuchaz:enigma:0.11.0.+:lib'
|
shade 'cuchaz:enigma:0.11.0.+:lib'
|
||||||
shade 'net.fabricmc:tiny-remapper:+'
|
shade 'net.fabricmc:tiny-remapper:+'
|
||||||
|
|
||||||
|
|
||||||
//Always fun when your dep needs the tool to build, but the tool needs the dep.
|
//Always fun when your dep needs the tool to build, but the tool needs the dep.
|
||||||
//compile 'net.fabricmc:fabric-base:16w38a-0.0.4-SNAPSHOT'
|
//compile 'net.fabricmc:fabric-base:16w38a-0.0.4-SNAPSHOT'
|
||||||
|
|
||||||
shade('org.spongepowered:mixin:0.6-SNAPSHOT') {
|
shade('org.spongepowered:mixin:0.6.8-SNAPSHOT') {
|
||||||
exclude module: 'launchwrapper'
|
exclude module: 'launchwrapper'
|
||||||
exclude module: 'guava'
|
exclude module: 'guava'
|
||||||
}
|
}
|
||||||
|
@ -76,7 +77,11 @@ sourceSets {
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
from {
|
from {
|
||||||
configurations.shade.collect { it.isDirectory() ? it : zipTree(it) }
|
configurations.shade.each { dep ->
|
||||||
|
from(project.zipTree(dep)){
|
||||||
|
exclude 'META-INF', 'META-INF/**'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue