X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=build.gradle;h=895654adffe27e5fd422e54a73d4e5146464d52b;hb=b491b3ffd025c504cac03b164fd24bf26a501a63;hp=80a121a5c539ffcb9bd568e61cc17e54a348dcec;hpb=8b00bea443167b9e6e7c1a30b5c25994d301cfab;p=BoundingBoxOutlineReloaded.git diff --git a/build.gradle b/build.gradle index 80a121a..895654a 100644 --- a/build.gradle +++ b/build.gradle @@ -30,10 +30,11 @@ repositories { } dependencies { - implementation('org.spongepowered:mixin:0.7.11-SNAPSHOT') { transitive = false } + implementation('org.spongepowered:mixin:0.8') { transitive = false } implementation('net.minecraft:launchwrapper:1.12') { transitive = false } - implementation 'org.ow2.asm:asm:6.2' + implementation 'org.ow2.asm:asm-tree:6.2' implementation 'org.ow2.asm:asm-commons:6.2' + implementation "org.ow2.asm:asm-util:6.2" } minecraft { @@ -42,6 +43,7 @@ minecraft { runDir = 'run' tweakClass = 'com.irtimaled.bbor.launch.ClientTweaker' makeObfSourceJar = false + clientJvmArgs = ['-XstartOnFirstThread'] replace "@VERSION@", project.version replaceIn "com/irtimaled/bbor/Main.java"