Skip to content

Commit ef84264

Browse files
1.21.3 (#2974)
* 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
1 parent eb0f07a commit ef84264

23 files changed

+8201
-6
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ body:
2727
description: Which server version version you using? If your server version is not listed, it is not supported. Update to a supported version first.
2828
multiple: false
2929
options:
30-
- '1.21'
30+
- '1.21.3'
31+
- '1.21.1'
3132
- '1.20.6'
3233
- '1.20.4'
3334
- '1.20.2'

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ allprojects {
8383
}
8484

8585
applyCommonConfiguration()
86-
val supportedVersions = listOf("1.19.4", "1.20", "1.20.4", "1.20.5", "1.20.6", "1.21", "1.21.1")
86+
val supportedVersions = listOf("1.20.4", "1.20.5", "1.20.6", "1.21", "1.21.1", "1.21.3")
8787

8888
tasks {
8989
supportedVersions.forEach {
@@ -97,7 +97,7 @@ tasks {
9797
}
9898
}
9999
runServer {
100-
minecraftVersion("1.21.1")
100+
minecraftVersion("1.21.3")
101101
pluginJars(*project(":worldedit-bukkit").getTasksByName("shadowJar", false).map { (it as Jar).archiveFile }
102102
.toTypedArray())
103103

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
# Minecraft expectations
3-
paper = "1.21-R0.1-SNAPSHOT"
3+
paper = "1.21.3-R0.1-SNAPSHOT"
44
fastutil = "8.5.9"
55
guava = "31.1-jre"
66
log4j = "2.19.0"

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ rootProject.name = "FastAsyncWorldEdit"
22

33
include("worldedit-libs")
44

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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import io.papermc.paperweight.userdev.PaperweightUserDependenciesExtension
2+
3+
plugins {
4+
java
5+
}
6+
7+
applyPaperweightAdapterConfiguration()
8+
9+
repositories {
10+
gradlePluginPortal()
11+
}
12+
13+
dependencies {
14+
// url=https://repo.papermc.io/service/rest/repository/browse/maven-public/io/papermc/paper/dev-bundle/1.21.3-R0.1-SNAPSHOT/
15+
the<PaperweightUserDependenciesExtension>().paperDevBundle("1.21.3-R0.1-20241101.150401-13")
16+
compileOnly(libs.paperlib)
17+
}

0 commit comments

Comments
 (0)