Update preprocess plugin and enable parallel builds by default

This commit is contained in:
Jonas Herzig
2020-05-23 13:25:37 +02:00
parent c0be8da65b
commit b68d077b38
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ import java.io.ByteArrayOutputStream
plugins { plugins {
id("fabric-loom") version "0.2.5-SNAPSHOT" apply false id("fabric-loom") version "0.2.5-SNAPSHOT" apply false
id("com.replaymod.preprocess") version "30eb312" id("com.replaymod.preprocess") version "3c46acb"
id("com.github.hierynomus.license") version "0.15.0" id("com.github.hierynomus.license") version "0.15.0"
} }

View File

@@ -2,5 +2,5 @@
# This is required to provide enough memory for the Minecraft decompilation process. # This is required to provide enough memory for the Minecraft decompilation process.
org.gradle.jvmargs=-Xmx3G org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false org.gradle.daemon=false
org.gradle.parallel=false org.gradle.parallel=true
org.gradle.configureondemand=true org.gradle.configureondemand=true