From ed73572a97c82ef52eab80baead1b1d8f5c3e72b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 19 Sep 2025 21:21:55 +0000 Subject: [PATCH 1/2] Update dependency io.papermc.paper:paper-api to v1.21.9-pre2-R0.1-SNAPSHOT --- build.gradle.kts | 2 +- plugin/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 84a57ef..28ed0b0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -33,7 +33,7 @@ repositories { } dependencies { - compileOnly("io.papermc.paper:paper-api:1.21.8-R0.1-SNAPSHOT") + compileOnly("io.papermc.paper:paper-api:1.21.9-pre2-R0.1-SNAPSHOT") } publishing { diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index 386c48f..a73880f 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -35,7 +35,7 @@ repositories { } dependencies { - compileOnly("io.papermc.paper:paper-api:1.21.8-R0.1-SNAPSHOT") + compileOnly("io.papermc.paper:paper-api:1.21.9-pre2-R0.1-SNAPSHOT") compileOnly("com.github.ElgarL:groupmanager:3.2") compileOnly("com.github.decentsoftware-eu:decentholograms:2.9.7") From 5456f43db76715dc3ec2ffc0c48cc874072d88de Mon Sep 17 00:00:00 2001 From: david Date: Sun, 21 Sep 2025 19:27:27 +0200 Subject: [PATCH 2/2] 1.21.9 support Exclude adventure-text-logger-slf4j and adventure-text-minimessage from i18n dependency as a temporary solution until adventure is stable. --- gradle.properties | 2 +- plugin/build.gradle.kts | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gradle.properties b/gradle.properties index 43b50b5..cd642c0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -gameVersions=1.21,1.21.1,1.21.2,1.21.3,1.21.4,1.21.5,1.21.6,1.21.7,1.21.8 +gameVersions=1.21,1.21.1,1.21.2,1.21.3,1.21.4,1.21.5,1.21.6,1.21.7,1.21.8,1.21.9 diff --git a/plugin/build.gradle.kts b/plugin/build.gradle.kts index a73880f..03dd4e5 100644 --- a/plugin/build.gradle.kts +++ b/plugin/build.gradle.kts @@ -47,7 +47,11 @@ dependencies { implementation("com.github.MilkBowl:VaultAPI:1.7.1") implementation("net.milkbowl.vault:VaultUnlockedAPI:2.15") - implementation("net.thenextlvl.core:i18n:3.2.2") + implementation("net.thenextlvl.core:i18n:3.2.2") { + // todo: remove – temp solution until adventure is stable + exclude("net.kyori", "adventure-text-logger-slf4j") + exclude("net.kyori", "adventure-text-minimessage") + } implementation("net.thenextlvl.core:paper:2.3.1") implementation("org.bstats:bstats-bukkit:3.1.1-SNAPSHOT")