Update Mixin (fixes GH-66)

This commit is contained in:
Jonas Herzig
2019-08-04 17:16:52 +02:00
parent d8ce4275af
commit f51298e2a3

View File

@@ -233,9 +233,9 @@ dependencies {
if (!FABRIC) { if (!FABRIC) {
// compile 'com.github.SpongePowered:Mixin:404f5da' // 0.7.5-SNAPSHOT // compile 'com.github.SpongePowered:Mixin:404f5da' // 0.7.5-SNAPSHOT
// ^ mixin doesn't compile on jitpack, so we'll have to depend on the SNAPSHOT and build it manually for reprod // ^ mixin doesn't compile on jitpack, so we'll have to depend on the SNAPSHOT and build it manually for reprod
annotationProcessor 'org.spongepowered:mixin:0.7.8-SNAPSHOT' annotationProcessor 'org.spongepowered:mixin:0.7.10-SNAPSHOT'
compileOnly 'org.spongepowered:mixin:0.7.8-SNAPSHOT' compileOnly 'org.spongepowered:mixin:0.7.10-SNAPSHOT'
shade('org.spongepowered:mixin:0.7.8-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
} }
} }