Update loom to 0.6

This commit is contained in:
Jonas Herzig
2021-02-28 12:17:05 +01:00
parent 537795f9ca
commit 3440b8d8a8
3 changed files with 6 additions and 9 deletions

View File

@@ -2,7 +2,7 @@ import groovy.json.JsonOutput
import java.io.ByteArrayOutputStream
plugins {
id("fabric-loom") version "0.5-SNAPSHOT" apply false
id("fabric-loom") version "0.6-SNAPSHOT" apply false
id("com.replaymod.preprocess") version "3d85a00"
id("com.github.hierynomus.license") version "0.15.0"
}
@@ -25,11 +25,6 @@ if (gitDescribe().endsWith("*")) {
group = "com.replaymod"
// Loom tries to find the active mixin version by recursing up to the root project and checking each project's
// compileClasspath and build script classpath (in that order). Since we've loom in our root project's classpath,
// loom will only find it after checking the root project's compileClasspath (which doesn't exist by default).
configurations.register("compileClasspath")
val shadowJar by tasks.creating(Copy::class) {
into("$buildDir/libs")
}