Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge 1.19.4 into 1.20.4 #4280

Merged
merged 12 commits into from
Mar 28, 2024
Merged
Prev Previous commit
Next Next commit
fix build failing, by making nether pathfinder version consistent
wagyourtail committed Jan 23, 2024
commit 078b3909b351db3814683153d253bd1301fa5182
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -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) {
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
@@ -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 {
2 changes: 1 addition & 1 deletion forge/build.gradle
Original file line number Diff line number Diff line change
@@ -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 {
2 changes: 2 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -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