From d3ffb915e9b0d24bb8f391244a643eaf06c007ea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 10:11:39 +0000 Subject: [PATCH] chore(deps): bump com.fasterxml.jackson.core:jackson-databind Bumps [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) from 2.19.2 to 2.20.1. - [Commits](https://github.com/FasterXML/jackson/commits) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-databind dependency-version: 2.20.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 03b05f5c..50bcd9c0 100644 --- a/build.gradle +++ b/build.gradle @@ -83,9 +83,9 @@ configurations { // Force Jackson 2.19.2 to be compatible with MCP SDK v0.14.0 all { resolutionStrategy { - force 'com.fasterxml.jackson.core:jackson-core:2.19.2' - force 'com.fasterxml.jackson.core:jackson-databind:2.19.2' - force 'com.fasterxml.jackson.core:jackson-annotations:2.19.2' + force 'com.fasterxml.jackson.core:jackson-core:2.20.1' + force 'com.fasterxml.jackson.core:jackson-databind:2.20.1' + force 'com.fasterxml.jackson.core:jackson-annotations:2.20.1' force 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.19.2' } } @@ -117,9 +117,9 @@ dependencies { implementation "org.eclipse.jetty:jetty-servlet:11.0.26" // Force Jackson 2.19.2 to be compatible with MCP SDK v0.14.0 - implementation "com.fasterxml.jackson.core:jackson-core:2.19.2" - implementation "com.fasterxml.jackson.core:jackson-databind:2.19.2" - implementation "com.fasterxml.jackson.core:jackson-annotations:2.19.2" + implementation "com.fasterxml.jackson.core:jackson-core:2.20.1" + implementation "com.fasterxml.jackson.core:jackson-databind:2.20.1" + implementation "com.fasterxml.jackson.core:jackson-annotations:2.20.1" // Testing dependencies testImplementation "org.mockito:mockito-core:5.20.0"