From ef87e3b10fe6404928efb26d4902b23d7758f516 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Aug 2026 06:54:04 +0000 Subject: [PATCH] chore(deps): Bump net.kyori:adventure-text-serializer-plain Bumps [net.kyori:adventure-text-serializer-plain](https://github.com/PaperMC/adventure) from 4.21.0 to 5.2.0. - [Release notes](https://github.com/PaperMC/adventure/releases) - [Commits](https://github.com/PaperMC/adventure/compare/v4.21.0...v5.2.0) --- updated-dependencies: - dependency-name: net.kyori:adventure-text-serializer-plain dependency-version: 5.2.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- velocity/build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/velocity/build.gradle.kts b/velocity/build.gradle.kts index 0d9ddc0..29958cf 100644 --- a/velocity/build.gradle.kts +++ b/velocity/build.gradle.kts @@ -32,12 +32,12 @@ dependencies { testImplementation("org.junit.jupiter:junit-jupiter-api:6.1.2") // Adventure reaches the plugin through Velocity at runtime, which is compileOnly here and so // absent from the test classpath. The tests render real Components, so they need it themselves. - testImplementation("net.kyori:adventure-api:4.21.0") - testImplementation("net.kyori:adventure-text-minimessage:4.21.0") - testImplementation("net.kyori:adventure-text-serializer-plain:4.21.0") + testImplementation("net.kyori:adventure-api:5.2.0") + testImplementation("net.kyori:adventure-text-minimessage:5.2.0") + testImplementation("net.kyori:adventure-text-serializer-plain:5.2.0") // Same reason, for the MOTD: the section codes a motd.gg import arrives in, the JSON the // stored document is, and the logger the manager reports a failed refresh through. - testImplementation("net.kyori:adventure-text-serializer-legacy:4.21.0") + testImplementation("net.kyori:adventure-text-serializer-legacy:5.2.0") testImplementation("com.google.code.gson:gson:2.11.0") testImplementation("org.slf4j:slf4j-api:2.0.17") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:6.1.2")