diff --git a/README.md b/README.md index 3ee421a5..a05f2b8e 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,6 @@ Build the mod via Gradle as explained above at least once (`./gradlew compileJav Then import the Gradle project from within IDEA: File -> Open -> build.gradle -> Open as Project Finally configure IDEA to build everything by itself instead of delegating it to Gradle (cause that is slow): File -> Settings -> Build, Execution, Deployment -> Build Tools -> Gradle -> Build and run using: IntelliJ IDEA -The generation of run configurations for 1.14+ currently depends on https://github.com/FabricMC/fabric-loom/pull/236 - ### Eclipse ## Development diff --git a/build.gradle b/build.gradle index a6b54dcb..73d65131 100644 --- a/build.gradle +++ b/build.gradle @@ -34,7 +34,7 @@ buildscript { dependencies { classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.2' if (fabric) { - classpath 'fabric-loom:fabric-loom.gradle.plugin:0.4-SNAPSHOT' + classpath 'fabric-loom:fabric-loom.gradle.plugin:0.5-SNAPSHOT' } else if (mcVersion >= 11400) { classpath('net.minecraftforge.gradle:ForgeGradle:3.+'){ exclude group: 'trove', module: 'trove' // preprocessor/idea requires more recent one diff --git a/jGui b/jGui index 3596f15f..66418363 160000 --- a/jGui +++ b/jGui @@ -1 +1 @@ -Subproject commit 3596f15f031f4af5a11153a5d0734d4188e13c64 +Subproject commit 6641836321f4583e6f56d8ceb59da452213396e7 diff --git a/root.gradle.kts b/root.gradle.kts index 0193959a..61825fc4 100755 --- a/root.gradle.kts +++ b/root.gradle.kts @@ -2,7 +2,7 @@ import groovy.json.JsonOutput import java.io.ByteArrayOutputStream plugins { - id("fabric-loom") version "0.4-SNAPSHOT" apply false + id("fabric-loom") version "0.5-SNAPSHOT" apply false id("com.replaymod.preprocess") version "24ac087" id("com.github.hierynomus.license") version "0.15.0" }