]> git.lizzy.rs Git - BoundingBoxOutlineReloaded.git/blobdiff - build.gradle
Tidy up
[BoundingBoxOutlineReloaded.git] / build.gradle
index 80a121a5c539ffcb9bd568e61cc17e54a348dcec..895654adffe27e5fd422e54a73d4e5146464d52b 100644 (file)
@@ -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"