Skip to content

Commit 7dba88c

Browse files
authored
Update for 1.21.7 (#301)
1 parent b24955e commit 7dba88c

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
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.5",
35+
"1.21.7",
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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ repositories {
2626
mavenContent {
2727
snapshotsOnly()
2828
includeGroup("xyz.jpenilla")
29+
includeGroup("net.kyori") // TODO adventure-platform and adventure-platform-mod snapshots
2930
}
3031
}
3132
maven("https://central.sonatype.com/repository/maven-snapshots/") {

gradle/libs.versions.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ hangarPublishPlugin = "0.1.3"
1212
indra = "3.1.3"
1313
shadow = "8.3.8"
1414
adventure = "4.21.0"
15-
adventurePlatform = "4.4.0"
16-
adventurePlatformMod = "6.4.0"
15+
adventurePlatform = "4.4.1-SNAPSHOT"
16+
adventurePlatformMod = "6.5.0-SNAPSHOT"
1717
configurate = "4.2.0"
1818
checkerQual = "3.49.4"
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.121.0+1.21.5"
25+
fabricApi = "0.129.0+1.21.7"
2626
fabricLoader = "0.16.14"
27-
minecraft = "1.21.5"
27+
minecraft = "1.21.7"
2828
spongeApi7 = "7.2.0"
2929
velocityApi = "3.4.0-SNAPSHOT"
3030
jupiterEngine = "5.13.3"
31-
neoforge = "21.5.62-beta"
31+
neoforge = "21.7.17-beta"
3232

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

platform/fabric/src/main/resources/fabric.mod.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@
2323
"minimotd-fabric.mixins.json"
2424
],
2525
"depends": {
26-
"fabricloader": ">=0.16.7",
27-
"fabric": "*",
28-
"minecraft": ">=1.21.3 <1.22-"
26+
"fabricloader": ">=0.16.14",
27+
"fabric-api": "*",
28+
"minecraft": "1.21.7",
29+
"adventure-platform-fabric": "*"
2930
}
3031
}

platform/neoforge/src/main/resources/META-INF/neoforge.mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ side = "BOTH"
2323
[[dependencies.minimotd]]
2424
modId = "minecraft"
2525
type = "required"
26-
versionRange = "[1.21.3,1.22)"
26+
versionRange = "[1.21.7,1.22)"
2727
ordering = "NONE"
2828
side = "BOTH"
2929

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.5",
57+
"1.21.7",
5858
)
5959
}

0 commit comments

Comments
 (0)