Skip to content

Commit

Permalink
Build against 1.21.1 and update metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Sep 30, 2024
1 parent cb0bf28 commit 99f1367
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ publishMods.modrinth {
minecraftVersions.addAll(
"1.20.6",
"1.21",
"1.21.1",
)
}

Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ hangarPublish.publications.register("plugin") {
apiKey = providers.environmentVariable("HANGAR_UPLOAD_KEY")
platforms.paper {
jar = project(":carbonchat-paper").platformJar()
platformVersions.add("1.20.6-1.21")
platformVersions.add("1.20.6-1.21.1")
dependencies {
url("LuckPerms", "https://luckperms.net/")
hangar("Essentials") {
Expand All @@ -37,7 +37,7 @@ hangarPublish.publications.register("plugin") {
}
platforms.velocity {
jar = project(":carbonchat-velocity").platformJar()
platformVersions.add("3.2")
platformVersions.add("3.3")
dependencies {
url("LuckPerms", "https://luckperms.net/")
hangar("MiniPlaceholders") {
Expand Down
4 changes: 2 additions & 2 deletions fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
"carbonchat.mixins.json"
],
"depends": {
"fabricloader": ">=0.15.11",
"fabricloader": ">=0.16.5",
"fabric": "*",
"cloud": "*",
"adventure-platform-fabric": "*",
"minecraft": "~1.21",
"minecraft": ">=1.21 <=1.21.1",
"luckperms": ">=5.0.0"
},
"suggests": {
Expand Down
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ registry = "1.0.0-SNAPSHOT"
kyoriMoonshine = "2.0.4"
guice = "7.0.0"
velocityApi = "3.3.0-SNAPSHOT"
minecraft = "1.21"
minecraft = "1.21.1"
fabricLoader = "0.16.5"
fabricApi = "0.102.0+1.21"
fabricApi = "0.105.0+1.21.1"
fabricPermissionsApi = "0.3.1"
adventurePlatformFabric = "5.14.1"
luckPermsApi = "5.4"
Expand All @@ -56,10 +56,10 @@ towny = "0.100.3.0"
mcmmo = "2.1.227"
fuuid = "1.6.9.5-U0.6.35"

# synced with version used by lowest supported mc (currently 1.20.4 on paper)
# synced with version used by lowest supported mc (currently 1.20.6 on paper)
gson = "2.10.1"
guava = "32.1.2-jre"
log4j = "2.19.0"
log4j = "2.22.1"
netty = "4.1.97.Final"

[libraries]
Expand Down
2 changes: 1 addition & 1 deletion paper/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ tasks {
withType(RunServer::class).configureEach {
version.set(libs.versions.minecraft)
downloadPlugins {
url("https://download.luckperms.net/1543/bukkit/loader/LuckPerms-Bukkit-5.4.130.jar")
url("https://download.luckperms.net/1556/bukkit/loader/LuckPerms-Bukkit-5.4.141.jar")
github("MiniPlaceholders", "MiniPlaceholders", libs.versions.miniplaceholders.get(), "MiniPlaceholders-Paper-${libs.versions.miniplaceholders.get()}.jar")
github("MiniPlaceholders", "PlaceholderAPI-Expansion", "1.2.0", "PlaceholderAPI-Expansion-1.2.0.jar")
hangar("PlaceholderAPI", libs.versions.placeholderapi.get())
Expand Down
2 changes: 1 addition & 1 deletion velocity/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ tasks {
velocityVersion(libs.versions.velocityApi.get())
pluginJars.from(prod)
downloadPlugins {
url("https://download.luckperms.net/1533/velocity/LuckPerms-Velocity-5.4.120.jar")
url("https://download.luckperms.net/1556/velocity/LuckPerms-Velocity-5.4.141.jar")
github("MiniPlaceholders", "MiniPlaceholders", libs.versions.miniplaceholders.get(), "MiniPlaceholders-Velocity-${libs.versions.miniplaceholders.get()}.jar")
}
}
Expand Down

0 comments on commit 99f1367

Please sign in to comment.