Skip to content

Commit ece9fd4

Browse files
committed
Update to Minecraft 1.21.5
1 parent 66ec3e8 commit ece9fd4

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

spark-fabric/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import net.fabricmc.loom.task.RemapJarTask
22

33
plugins {
4-
id 'fabric-loom' version '1.9-SNAPSHOT'
4+
id 'fabric-loom' version '1.10-SNAPSHOT'
55
id 'com.gradleup.shadow' version '8.3.0'
66
}
77

@@ -28,9 +28,9 @@ configurations {
2828

2929
dependencies {
3030
// https://modmuss50.me/fabric.html
31-
minecraft 'com.mojang:minecraft:1.21.4'
32-
mappings 'net.fabricmc:yarn:1.21.4+build.1:v2'
33-
modImplementation 'net.fabricmc:fabric-loader:0.16.9'
31+
minecraft 'com.mojang:minecraft:1.21.5'
32+
mappings 'net.fabricmc:yarn:1.21.5+build.1:v2'
33+
modImplementation 'net.fabricmc:fabric-loader:0.16.10'
3434

3535
Set<String> apiModules = [
3636
"fabric-api-base",
@@ -40,7 +40,7 @@ dependencies {
4040

4141
// Add each module as a dependency
4242
apiModules.forEach {
43-
modImplementation(fabricApi.module(it, '0.111.0+1.21.4'))
43+
modImplementation(fabricApi.module(it, '0.119.0+1.21.5'))
4444
}
4545

4646
include(modImplementation('me.lucko:fabric-permissions-api:0.3.3'))

spark-neoforge/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'com.gradleup.shadow' version '8.3.0'
3-
id 'net.neoforged.moddev' version '1.0.23'
3+
id 'net.neoforged.moddev' version '2.0.78'
44
}
55

66
tasks.withType(JavaCompile).configureEach {
@@ -15,7 +15,7 @@ java {
1515
}
1616

1717
neoForge {
18-
version = "21.4.10-beta"
18+
version = "21.5.2-beta"
1919
validateAccessTransformers = true
2020

2121
runs {

0 commit comments

Comments
 (0)