Update non-fabric versions to Mixin 0.8

This commit is contained in:
Jonas Herzig
2020-04-06 20:33:44 +02:00
parent 51e10d890a
commit 4c577c4559

View File

@@ -248,11 +248,9 @@ dependencies {
} }
if (!FABRIC) { if (!FABRIC) {
// compile 'com.github.SpongePowered:Mixin:404f5da' // 0.7.5-SNAPSHOT annotationProcessor 'org.spongepowered:mixin:0.8'
// ^ mixin doesn't compile on jitpack, so we'll have to depend on the SNAPSHOT and build it manually for reprod compileOnly 'org.spongepowered:mixin:0.8'
annotationProcessor 'org.spongepowered:mixin:0.7.10-SNAPSHOT' shade('org.spongepowered:mixin:0.8') {
compileOnly 'org.spongepowered:mixin:0.7.10-SNAPSHOT'
shade('org.spongepowered:mixin:0.7.10-SNAPSHOT') {
transitive = false // deps should all be bundled with MC transitive = false // deps should all be bundled with MC
} }
} }