From 12dc04fe3950da0d68c1524413ed7f032a912aa0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 15 Mar 2025 14:24:07 +0000 Subject: [PATCH] chore(deps): bump com.google.code.gson:gson from 2.11.0 to 2.12.1 Bumps [com.google.code.gson:gson](https://github.com/google/gson) from 2.11.0 to 2.12.1. - [Release notes](https://github.com/google/gson/releases) - [Changelog](https://github.com/google/gson/blob/main/CHANGELOG.md) - [Commits](https://github.com/google/gson/compare/gson-parent-2.11.0...gson-parent-2.12.1) --- updated-dependencies: - dependency-name: com.google.code.gson:gson dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- libraries/common/build.gradle.kts | 2 +- libraries/jdb/build.gradle.kts | 4 ++-- libraries/plugin-tests/build.gradle.kts | 4 ++-- tools/deployment/build.gradle.kts | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/libraries/common/build.gradle.kts b/libraries/common/build.gradle.kts index 78702c96..10c1012f 100644 --- a/libraries/common/build.gradle.kts +++ b/libraries/common/build.gradle.kts @@ -29,7 +29,7 @@ dependencies { // testing testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.3") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("com.google.code.gson:gson:2.11.0") + testImplementation("com.google.code.gson:gson:2.12.1") } tasks { diff --git a/libraries/jdb/build.gradle.kts b/libraries/jdb/build.gradle.kts index 39471449..12bcff39 100644 --- a/libraries/jdb/build.gradle.kts +++ b/libraries/jdb/build.gradle.kts @@ -19,12 +19,12 @@ repositories { } dependencies { - compileOnly("com.google.code.gson:gson:2.11.0") + compileOnly("com.google.code.gson:gson:2.12.1") implementation("org.jetbrains:annotations:26.0.2") testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.3") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("com.google.code.gson:gson:2.11.0") + testImplementation("com.google.code.gson:gson:2.12.1") } tasks { diff --git a/libraries/plugin-tests/build.gradle.kts b/libraries/plugin-tests/build.gradle.kts index bc6f0686..181e33ef 100644 --- a/libraries/plugin-tests/build.gradle.kts +++ b/libraries/plugin-tests/build.gradle.kts @@ -20,12 +20,12 @@ repositories { dependencies { compileOnly("io.papermc.paper:paper-api:1.19.4-R0.1-SNAPSHOT") - compileOnly("com.google.code.gson:gson:2.11.0") + compileOnly("com.google.code.gson:gson:2.12.1") implementation("org.jetbrains:annotations:26.0.2") testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.3") testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("com.google.code.gson:gson:2.11.0") + testImplementation("com.google.code.gson:gson:2.12.1") } tasks { diff --git a/tools/deployment/build.gradle.kts b/tools/deployment/build.gradle.kts index 6613323c..2a9b8ba2 100644 --- a/tools/deployment/build.gradle.kts +++ b/tools/deployment/build.gradle.kts @@ -18,7 +18,7 @@ repositories { } dependencies { - compileOnly("com.google.code.gson:gson:2.11.0") + compileOnly("com.google.code.gson:gson:2.12.1") implementation("com.squareup.okhttp3:okhttp:4.12.0") implementation("org.jetbrains:annotations:26.0.2")