diff options
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 57b0a73..4f28bcb 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -3,7 +3,7 @@ plugins { java id("gg.essential.loom") version "0.10.0.+" id("dev.architectury.architectury-pack200") version "0.1.3" - id("com.github.johnrengelman.shadow") version "7.1.2" + id("com.github.johnrengelman.shadow") version "8.1.1" } //Constants: @@ -43,7 +43,7 @@ loom { } sourceSets.main { - output.setResourcesDir(file("$buildDir/classes/java/main")) + output.resourcesDir = file("$buildDir/classes/java/main") } // Dependencies: @@ -68,10 +68,10 @@ dependencies { shadowImpl("org.spongepowered:mixin:0.7.11-SNAPSHOT") { isTransitive = false } - annotationProcessor("org.spongepowered:mixin:0.8.4-SNAPSHOT") + annotationProcessor("org.spongepowered:mixin:0.8.5-SNAPSHOT") // If you don't want to log in with your real minecraft account, remove this line - runtimeOnly("me.djtheredstoner:DevAuth-forge-legacy:1.1.0") + runtimeOnly("me.djtheredstoner:DevAuth-forge-legacy:1.1.2") } |