Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}
Expand Down Expand Up @@ -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"
Expand Down
Loading