]> git.lizzy.rs Git - BoundingBoxOutlineReloaded.git/blobdiff - build.gradle
Ensure boxes don't show through blocks
[BoundingBoxOutlineReloaded.git] / build.gradle
index c84131daffade1a0ccd88e2a40e21ea3c5aa48ea..895654adffe27e5fd422e54a73d4e5146464d52b 100644 (file)
@@ -30,18 +30,20 @@ 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 {
     version = project.mcVersion
-    mappings = 'snapshot_20180908'
+    mappings = 'snapshot_20190624'
     runDir = 'run'
     tweakClass = 'com.irtimaled.bbor.launch.ClientTweaker'
     makeObfSourceJar = false
+    clientJvmArgs = ['-XstartOnFirstThread']
 
     replace "@VERSION@", project.version
     replaceIn "com/irtimaled/bbor/Main.java"