From 078b3909b351db3814683153d253bd1301fa5182 Mon Sep 17 00:00:00 2001 From: Wagyourtail Date: Tue, 23 Jan 2024 08:18:58 -0700 Subject: [PATCH] fix build failing, by making nether pathfinder version consistent --- build.gradle | 2 +- fabric/build.gradle | 2 +- forge/build.gradle | 2 +- gradle.properties | 2 ++ 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 086d16c90..4ffc147e0 100755 --- a/build.gradle +++ b/build.gradle @@ -77,7 +77,7 @@ allprojects { // The following line declares the yarn mappings you may select this one as well. // mappings "net.fabricmc:yarn:1.17.1+build.32:v2" //launchImplementation('dev.babbaj:nether-pathfinder:1.3.0') - implementation 'dev.babbaj:nether-pathfinder:1.4.1' + implementation "dev.babbaj:nether-pathfinder:${project.nether_pathfinder_version}" } unimined.minecraft(sourceSets.main, true) { diff --git a/fabric/build.gradle b/fabric/build.gradle index 9674f4e7a..e0d5d8442 100644 --- a/fabric/build.gradle +++ b/fabric/build.gradle @@ -45,7 +45,7 @@ dependencies { common sourceSet.output shadowCommon sourceSet.output } - include 'dev.babbaj:nether-pathfinder:1.3.0' + include "dev.babbaj:nether-pathfinder:${project.nether_pathfinder_version}" } processResources { diff --git a/forge/build.gradle b/forge/build.gradle index d12da3201..334bd968c 100644 --- a/forge/build.gradle +++ b/forge/build.gradle @@ -56,7 +56,7 @@ dependencies { common sourceSet.output shadowCommon sourceSet.output } - shadowCommon 'dev.babbaj:nether-pathfinder:1.3.0' + shadowCommon "dev.babbaj:nether-pathfinder:${project.nether_pathfinder_version}" } processResources { diff --git a/gradle.properties b/gradle.properties index 77fe67e7f..d3db032c2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -7,3 +7,5 @@ archives_base_name=baritone minecraft_version=1.19.4 forge_version=45.0.43 fabric_version=0.14.11 + +nether_pathfinder_version=1.4.1 \ No newline at end of file