Update loom to 0.5 (closes #453)

This commit is contained in:
Jonas Herzig
2021-02-17 11:38:33 +01:00
parent 56e5df65d5
commit 2f0160c4f6
4 changed files with 3 additions and 5 deletions

View File

@@ -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

View File

@@ -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

2
jGui

Submodule jGui updated: 3596f15f03...6641836321

View File

@@ -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"
}