From 8c46698f97bb22e3b16061912a34a03fe52da08b Mon Sep 17 00:00:00 2001 From: ILikePlayingGames <22475143+ILikePlayingGames@users.noreply.github.com> Date: Sat, 1 Jul 2023 23:41:16 -0400 Subject: Update dependencies and fix bugs - Update Gradle to 8.2-bin - Update Shadow to 8.1.1 - Update DevAuth to 1.1.2 - Update Mixin to 0.8.5 - Add some missed property substitutions --- build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'build.gradle.kts') 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") } -- cgit