Skip to content

Commit

Permalink
1.21.3 (#2974)
Browse files Browse the repository at this point in the history
* feat: initial work on 1.21.3 adapter

* chore: method does not exist anymore

* cleanup, deduplicate, drop old versions from runServer task

* chore: apply deduplicated fields changes from PR

* chore: remove jetbrains annotations references

* chore: remove unsupported versions from modrinth release task

* chore: adjust mondrinth versions, update issue template
  • Loading branch information
PierreSchwang authored Nov 10, 2024
1 parent eb0f07a commit ef84264
Show file tree
Hide file tree
Showing 23 changed files with 8,201 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ body:
description: Which server version version you using? If your server version is not listed, it is not supported. Update to a supported version first.
multiple: false
options:
- '1.21'
- '1.21.3'
- '1.21.1'
- '1.20.6'
- '1.20.4'
- '1.20.2'
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ allprojects {
}

applyCommonConfiguration()
val supportedVersions = listOf("1.19.4", "1.20", "1.20.4", "1.20.5", "1.20.6", "1.21", "1.21.1")
val supportedVersions = listOf("1.20.4", "1.20.5", "1.20.6", "1.21", "1.21.1", "1.21.3")

tasks {
supportedVersions.forEach {
Expand All @@ -97,7 +97,7 @@ tasks {
}
}
runServer {
minecraftVersion("1.21.1")
minecraftVersion("1.21.3")
pluginJars(*project(":worldedit-bukkit").getTasksByName("shadowJar", false).map { (it as Jar).archiveFile }
.toTypedArray())

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
# Minecraft expectations
paper = "1.21-R0.1-SNAPSHOT"
paper = "1.21.3-R0.1-SNAPSHOT"
fastutil = "8.5.9"
guava = "31.1-jre"
log4j = "2.19.0"
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ rootProject.name = "FastAsyncWorldEdit"

include("worldedit-libs")

listOf("1_20_2", "1_20_4", "1_20_5", "1_21").forEach {
listOf("1_20_2", "1_20_4", "1_20_5", "1_21", "1_21_3").forEach {
include("worldedit-bukkit:adapters:adapter-$it")
}

Expand Down
17 changes: 17 additions & 0 deletions worldedit-bukkit/adapters/adapter-1_21_3/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import io.papermc.paperweight.userdev.PaperweightUserDependenciesExtension

plugins {
java
}

applyPaperweightAdapterConfiguration()

repositories {
gradlePluginPortal()
}

dependencies {
// url=https://repo.papermc.io/service/rest/repository/browse/maven-public/io/papermc/paper/dev-bundle/1.21.3-R0.1-SNAPSHOT/
the<PaperweightUserDependenciesExtension>().paperDevBundle("1.21.3-R0.1-20241101.150401-13")
compileOnly(libs.paperlib)
}
Loading

0 comments on commit ef84264

Please sign in to comment.