From 6031a45ec678b757028e6de7a5cca89378bf61ac Mon Sep 17 00:00:00 2001 From: valoeghese Date: Mon, 4 May 2020 22:56:51 +1200 Subject: [PATCH] add asm8 but I bet it will conflict with asm4 which is being included with mc I think, for some reason --- build.gradle | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build.gradle b/build.gradle index 75a32b7..b13ac2b 100644 --- a/build.gradle +++ b/build.gradle @@ -42,6 +42,13 @@ dependencies { implementation 'com.google.guava:guava:28.0-jre' implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6' + // mixin and fabric loader need asm 8 + implementation 'org.ow2.asm:asm:8.0' + implementation 'org.ow2.asm:asm-analysis:8.0' + implementation 'org.ow2.asm:asm-commons:8.0' + implementation 'org.ow2.asm:asm-tree:8.0' + implementation 'org.ow2.asm:asm-util:8.0' + //to change the versions see the gradle.properties file minecraft "com.mojang:minecraft:${project.minecraft_version}"