Skip to content

Commit 8e6f9ea

Browse files
authored
Minecraft 1.21.5 (#278)
1 parent 03a9512 commit 8e6f9ea

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

gradle/build-logic/src/main/kotlin/extensions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ val bukkitVersions = listOf(
3232
"1.18.2",
3333
"1.19.4",
3434
"1.20.6",
35-
"1.21.4",
35+
"1.21.5",
3636
)
3737

3838
val productionJarAttribute = Attribute.of("minimotd.productionJar", String::class.java)

gradle/build-logic/src/main/kotlin/minimotd.base-conventions.gradle.kts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@ repositories {
2222
mavenCentral {
2323
mavenContent { releasesOnly() }
2424
}
25+
maven("https://repo.jpenilla.xyz/snapshots/") {
26+
mavenContent {
27+
snapshotsOnly()
28+
includeGroup("xyz.jpenilla")
29+
includeGroup("net.kyori") // TODO adventure mod 6.4.0
30+
}
31+
}
2532
maven("https://oss.sonatype.org/content/repositories/snapshots/") {
2633
mavenContent { snapshotsOnly() }
2734
}
@@ -30,9 +37,6 @@ repositories {
3037
}
3138
maven("https://repo.papermc.io/repository/maven-public/")
3239
maven("https://repo.spongepowered.org/repository/maven-public/")
33-
maven("https://repo.jpenilla.xyz/snapshots/") {
34-
mavenContent { snapshotsOnly() }
35-
}
3640
}
3741

3842
dependencies {

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ indra = "3.1.3"
1313
shadow = "8.3.6"
1414
adventure = "4.20.0"
1515
adventurePlatform = "4.3.4"
16-
adventurePlatformMod = "6.3.0"
16+
adventurePlatformMod = "6.4.0-SNAPSHOT"
1717
configurate = "4.2.0"
1818
checkerQual = "3.49.2"
1919
slf4j = "1.7.32"
@@ -22,13 +22,13 @@ bstats = "3.1.0"
2222
paperApi = "1.16.5-R0.1-SNAPSHOT"
2323
paperlib = "1.0.8"
2424
waterfallApi = "1.16-R0.5-SNAPSHOT"
25-
fabricApi = "0.119.2+1.21.4"
25+
fabricApi = "0.120.0+1.21.5"
2626
fabricLoader = "0.16.14"
27-
minecraft = "1.21.4"
27+
minecraft = "1.21.5"
2828
spongeApi7 = "7.2.0"
2929
velocityApi = "3.4.0-SNAPSHOT"
3030
jupiterEngine = "5.12.2"
31-
neoforge = "21.4.123"
31+
neoforge = "21.5.40-beta"
3232

3333
[libraries]
3434
adventureBom = { group = "net.kyori", name = "adventure-bom", version.ref = "adventure" }

platform/sponge8/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ publishMods.modrinth {
5454
"1.18.2",
5555
"1.19.4",
5656
"1.20.6",
57-
"1.21.4",
57+
"1.21.5",
5858
)
5959
}

0 commit comments

Comments
 (0)