From 95addb492255baaaf83ea9dc1c65b96bec743a02 Mon Sep 17 00:00:00 2001 From: Christian Tzolov Date: Wed, 18 Feb 2026 11:57:02 +0100 Subject: [PATCH 1/8] The 0.18.x branch should use jackson2 by default Signed-off-by: Christian Tzolov --- README.md | 4 ++-- mcp/pom.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c1f5f10c6..62070aefd 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ The following sections explain what we chose, why it made sense, and how the cho * **Why**: Jackson is widely adopted across the Java ecosystem, provides strong performance and a mature annotation model, and is familiar to the SDK team and many potential contributors. -* **How we expose it**: Public APIs use a bundled abstraction. Jackson is shipped as the default implementation (`mcp-json-jackson3`), but alternatives can be plugged in. +* **How we expose it**: Public APIs use a bundled abstraction. Jackson is shipped as the default implementation (`mcp-json-jackson2`), but alternatives can be plugged in. * **How it fits the SDK**: This offers a pragmatic default while keeping flexibility for projects that prefer different JSON libraries. @@ -174,7 +174,7 @@ The SDK is organized into modules to separate concerns and allow adopters to bri * `mcp-core` – Reference implementation (STDIO, JDK HttpClient, Servlet), JSON binding interface definitions * `mcp-json-jackson2` – Jackson 2 implementation of JSON binding * `mcp-json-jackson3` – Jackson 3 implementation of JSON binding -* `mcp` – Convenience bundle (core + Jackson 3) +* `mcp` – Convenience bundle (core + Jackson 2) * `mcp-test` – Shared testing utilities * `mcp-spring` – Spring integrations (WebClient, WebFlux, WebMVC) diff --git a/mcp/pom.xml b/mcp/pom.xml index db91bc288..0e0ed1288 100644 --- a/mcp/pom.xml +++ b/mcp/pom.xml @@ -24,7 +24,7 @@ io.modelcontextprotocol.sdk - mcp-json-jackson3 + mcp-json-jackson2 0.18.0-SNAPSHOT From d82a928231505eac26d1b9100ee1e6946a5898d4 Mon Sep 17 00:00:00 2001 From: Christian Tzolov Date: Wed, 18 Feb 2026 11:57:40 +0100 Subject: [PATCH 2/8] Release version 0.18.0 Signed-off-by: Christian Tzolov --- conformance-tests/client-jdk-http-client/pom.xml | 4 ++-- conformance-tests/pom.xml | 2 +- conformance-tests/server-servlet/pom.xml | 4 ++-- mcp-bom/pom.xml | 2 +- mcp-core/pom.xml | 2 +- mcp-json-jackson2/pom.xml | 4 ++-- mcp-json-jackson3/pom.xml | 4 ++-- mcp-spring/mcp-spring-webflux/pom.xml | 8 ++++---- mcp-spring/mcp-spring-webmvc/pom.xml | 10 +++++----- mcp-test/pom.xml | 8 ++++---- mcp/pom.xml | 6 +++--- pom.xml | 2 +- 12 files changed, 28 insertions(+), 28 deletions(-) diff --git a/conformance-tests/client-jdk-http-client/pom.xml b/conformance-tests/client-jdk-http-client/pom.xml index 64b6adc4a..7e53a0f66 100644 --- a/conformance-tests/client-jdk-http-client/pom.xml +++ b/conformance-tests/client-jdk-http-client/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk conformance-tests - 0.18.0-SNAPSHOT + 0.18.0 client-jdk-http-client jar @@ -24,7 +24,7 @@ io.modelcontextprotocol.sdk mcp - 0.18.0-SNAPSHOT + 0.18.0 diff --git a/conformance-tests/pom.xml b/conformance-tests/pom.xml index 01ad51a33..dec5d5617 100644 --- a/conformance-tests/pom.xml +++ b/conformance-tests/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0-SNAPSHOT + 0.18.0 conformance-tests pom diff --git a/conformance-tests/server-servlet/pom.xml b/conformance-tests/server-servlet/pom.xml index 482ad55e0..c5dbb6aa2 100644 --- a/conformance-tests/server-servlet/pom.xml +++ b/conformance-tests/server-servlet/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk conformance-tests - 0.18.0-SNAPSHOT + 0.18.0 server-servlet jar @@ -24,7 +24,7 @@ io.modelcontextprotocol.sdk mcp - 0.18.0-SNAPSHOT + 0.18.0 diff --git a/mcp-bom/pom.xml b/mcp-bom/pom.xml index f3d76d819..26b2e94c0 100644 --- a/mcp-bom/pom.xml +++ b/mcp-bom/pom.xml @@ -7,7 +7,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0-SNAPSHOT + 0.18.0 mcp-bom diff --git a/mcp-core/pom.xml b/mcp-core/pom.xml index 6dab41aff..4044656f8 100644 --- a/mcp-core/pom.xml +++ b/mcp-core/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0-SNAPSHOT + 0.18.0 mcp-core jar diff --git a/mcp-json-jackson2/pom.xml b/mcp-json-jackson2/pom.xml index 37384fea9..52ad2bcb1 100644 --- a/mcp-json-jackson2/pom.xml +++ b/mcp-json-jackson2/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0-SNAPSHOT + 0.18.0 mcp-json-jackson2 jar @@ -71,7 +71,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.0-SNAPSHOT + 0.18.0 com.networknt diff --git a/mcp-json-jackson3/pom.xml b/mcp-json-jackson3/pom.xml index c02bc375b..cb804034c 100644 --- a/mcp-json-jackson3/pom.xml +++ b/mcp-json-jackson3/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0-SNAPSHOT + 0.18.0 mcp-json-jackson3 jar @@ -65,7 +65,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.0-SNAPSHOT + 0.18.0 tools.jackson.core diff --git a/mcp-spring/mcp-spring-webflux/pom.xml b/mcp-spring/mcp-spring-webflux/pom.xml index 96a26b496..19340e95a 100644 --- a/mcp-spring/mcp-spring-webflux/pom.xml +++ b/mcp-spring/mcp-spring-webflux/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0-SNAPSHOT + 0.18.0 ../../pom.xml mcp-spring-webflux @@ -26,13 +26,13 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.0-SNAPSHOT + 0.18.0 io.modelcontextprotocol.sdk mcp-test - 0.18.0-SNAPSHOT + 0.18.0 test @@ -45,7 +45,7 @@ io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.0-SNAPSHOT + 0.18.0 test diff --git a/mcp-spring/mcp-spring-webmvc/pom.xml b/mcp-spring/mcp-spring-webmvc/pom.xml index f53f8ff11..c89ecf31d 100644 --- a/mcp-spring/mcp-spring-webmvc/pom.xml +++ b/mcp-spring/mcp-spring-webmvc/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0-SNAPSHOT + 0.18.0 ../../pom.xml mcp-spring-webmvc @@ -26,7 +26,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.0-SNAPSHOT + 0.18.0 @@ -38,21 +38,21 @@ io.modelcontextprotocol.sdk mcp-test - 0.18.0-SNAPSHOT + 0.18.0 test io.modelcontextprotocol.sdk mcp-spring-webflux - 0.18.0-SNAPSHOT + 0.18.0 test io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.0-SNAPSHOT + 0.18.0 test diff --git a/mcp-test/pom.xml b/mcp-test/pom.xml index c77068f89..aa8024b5b 100644 --- a/mcp-test/pom.xml +++ b/mcp-test/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0-SNAPSHOT + 0.18.0 mcp-test jar @@ -24,7 +24,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.0-SNAPSHOT + 0.18.0 @@ -159,7 +159,7 @@ io.modelcontextprotocol.sdk mcp-json-jackson3 - 0.18.0-SNAPSHOT + 0.18.0 test @@ -170,7 +170,7 @@ io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.0-SNAPSHOT + 0.18.0 test diff --git a/mcp/pom.xml b/mcp/pom.xml index 0e0ed1288..6e7fcf32f 100644 --- a/mcp/pom.xml +++ b/mcp/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0-SNAPSHOT + 0.18.0 mcp jar @@ -25,13 +25,13 @@ io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.0-SNAPSHOT + 0.18.0 io.modelcontextprotocol.sdk mcp-core - 0.18.0-SNAPSHOT + 0.18.0 diff --git a/pom.xml b/pom.xml index 18b24ce2f..715b24943 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0-SNAPSHOT + 0.18.0 pom https://github.com/modelcontextprotocol/java-sdk From 6cbd3174055a97cd7de0e7814d2592681fabafdb Mon Sep 17 00:00:00 2001 From: Christian Tzolov Date: Wed, 18 Feb 2026 11:58:11 +0100 Subject: [PATCH 3/8] Next development version Signed-off-by: Christian Tzolov --- conformance-tests/client-jdk-http-client/pom.xml | 4 ++-- conformance-tests/pom.xml | 2 +- conformance-tests/server-servlet/pom.xml | 4 ++-- mcp-bom/pom.xml | 2 +- mcp-core/pom.xml | 2 +- mcp-json-jackson2/pom.xml | 4 ++-- mcp-json-jackson3/pom.xml | 4 ++-- mcp-spring/mcp-spring-webflux/pom.xml | 8 ++++---- mcp-spring/mcp-spring-webmvc/pom.xml | 10 +++++----- mcp-test/pom.xml | 8 ++++---- mcp/pom.xml | 6 +++--- pom.xml | 2 +- 12 files changed, 28 insertions(+), 28 deletions(-) diff --git a/conformance-tests/client-jdk-http-client/pom.xml b/conformance-tests/client-jdk-http-client/pom.xml index 7e53a0f66..2f6fd68c5 100644 --- a/conformance-tests/client-jdk-http-client/pom.xml +++ b/conformance-tests/client-jdk-http-client/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk conformance-tests - 0.18.0 + 0.18.1-SNAPSHOT client-jdk-http-client jar @@ -24,7 +24,7 @@ io.modelcontextprotocol.sdk mcp - 0.18.0 + 0.18.1-SNAPSHOT diff --git a/conformance-tests/pom.xml b/conformance-tests/pom.xml index dec5d5617..893050209 100644 --- a/conformance-tests/pom.xml +++ b/conformance-tests/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0 + 0.18.1-SNAPSHOT conformance-tests pom diff --git a/conformance-tests/server-servlet/pom.xml b/conformance-tests/server-servlet/pom.xml index c5dbb6aa2..68dfa132d 100644 --- a/conformance-tests/server-servlet/pom.xml +++ b/conformance-tests/server-servlet/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk conformance-tests - 0.18.0 + 0.18.1-SNAPSHOT server-servlet jar @@ -24,7 +24,7 @@ io.modelcontextprotocol.sdk mcp - 0.18.0 + 0.18.1-SNAPSHOT diff --git a/mcp-bom/pom.xml b/mcp-bom/pom.xml index 26b2e94c0..3b7a73f38 100644 --- a/mcp-bom/pom.xml +++ b/mcp-bom/pom.xml @@ -7,7 +7,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0 + 0.18.1-SNAPSHOT mcp-bom diff --git a/mcp-core/pom.xml b/mcp-core/pom.xml index 4044656f8..af500edb5 100644 --- a/mcp-core/pom.xml +++ b/mcp-core/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0 + 0.18.1-SNAPSHOT mcp-core jar diff --git a/mcp-json-jackson2/pom.xml b/mcp-json-jackson2/pom.xml index 52ad2bcb1..c0a56304c 100644 --- a/mcp-json-jackson2/pom.xml +++ b/mcp-json-jackson2/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0 + 0.18.1-SNAPSHOT mcp-json-jackson2 jar @@ -71,7 +71,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.0 + 0.18.1-SNAPSHOT com.networknt diff --git a/mcp-json-jackson3/pom.xml b/mcp-json-jackson3/pom.xml index cb804034c..ef28be708 100644 --- a/mcp-json-jackson3/pom.xml +++ b/mcp-json-jackson3/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0 + 0.18.1-SNAPSHOT mcp-json-jackson3 jar @@ -65,7 +65,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.0 + 0.18.1-SNAPSHOT tools.jackson.core diff --git a/mcp-spring/mcp-spring-webflux/pom.xml b/mcp-spring/mcp-spring-webflux/pom.xml index 19340e95a..e91cd978f 100644 --- a/mcp-spring/mcp-spring-webflux/pom.xml +++ b/mcp-spring/mcp-spring-webflux/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0 + 0.18.1-SNAPSHOT ../../pom.xml mcp-spring-webflux @@ -26,13 +26,13 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.0 + 0.18.1-SNAPSHOT io.modelcontextprotocol.sdk mcp-test - 0.18.0 + 0.18.1-SNAPSHOT test @@ -45,7 +45,7 @@ io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.0 + 0.18.1-SNAPSHOT test diff --git a/mcp-spring/mcp-spring-webmvc/pom.xml b/mcp-spring/mcp-spring-webmvc/pom.xml index c89ecf31d..65728d075 100644 --- a/mcp-spring/mcp-spring-webmvc/pom.xml +++ b/mcp-spring/mcp-spring-webmvc/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0 + 0.18.1-SNAPSHOT ../../pom.xml mcp-spring-webmvc @@ -26,7 +26,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.0 + 0.18.1-SNAPSHOT @@ -38,21 +38,21 @@ io.modelcontextprotocol.sdk mcp-test - 0.18.0 + 0.18.1-SNAPSHOT test io.modelcontextprotocol.sdk mcp-spring-webflux - 0.18.0 + 0.18.1-SNAPSHOT test io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.0 + 0.18.1-SNAPSHOT test diff --git a/mcp-test/pom.xml b/mcp-test/pom.xml index aa8024b5b..798d488f8 100644 --- a/mcp-test/pom.xml +++ b/mcp-test/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0 + 0.18.1-SNAPSHOT mcp-test jar @@ -24,7 +24,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.0 + 0.18.1-SNAPSHOT @@ -159,7 +159,7 @@ io.modelcontextprotocol.sdk mcp-json-jackson3 - 0.18.0 + 0.18.1-SNAPSHOT test @@ -170,7 +170,7 @@ io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.0 + 0.18.1-SNAPSHOT test diff --git a/mcp/pom.xml b/mcp/pom.xml index 6e7fcf32f..177b3562b 100644 --- a/mcp/pom.xml +++ b/mcp/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0 + 0.18.1-SNAPSHOT mcp jar @@ -25,13 +25,13 @@ io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.0 + 0.18.1-SNAPSHOT io.modelcontextprotocol.sdk mcp-core - 0.18.0 + 0.18.1-SNAPSHOT diff --git a/pom.xml b/pom.xml index 715b24943..c5464c861 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.0 + 0.18.1-SNAPSHOT pom https://github.com/modelcontextprotocol/java-sdk From 28f4b318f440abd988f761e410d43ae8cdb022ca Mon Sep 17 00:00:00 2001 From: Scott Lewis Date: Sat, 14 Feb 2026 14:43:42 -0800 Subject: [PATCH 4/8] Fix and simplification for osgi manifest.mf contents generation. Cherry-picked from main (159eb964cc6252afb977c7fc8531748d24954784) Signed-off-by: Daniel Garnier-Moiroux --- mcp-core/pom.xml | 5 ++--- mcp-json-jackson2/pom.xml | 3 +-- mcp-json-jackson3/pom.xml | 3 +-- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/mcp-core/pom.xml b/mcp-core/pom.xml index af500edb5..e666e2595 100644 --- a/mcp-core/pom.xml +++ b/mcp-core/pom.xml @@ -35,14 +35,13 @@ Date: Thu, 19 Feb 2026 10:27:17 +0100 Subject: [PATCH 5/8] Update GH action to publish SN on 0.18.x push Signed-off-by: Christian Tzolov --- .github/workflows/publish-snapshot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-snapshot.yml b/.github/workflows/publish-snapshot.yml index 1a61d336c..fdd52861b 100644 --- a/.github/workflows/publish-snapshot.yml +++ b/.github/workflows/publish-snapshot.yml @@ -2,7 +2,7 @@ name: Publish Snapshot on: push: - branches: [ "main" ] + branches: [ "main", "0.18.x" ] jobs: build: From 8491769fa63c19e9007f09f52af6b4755cd02308 Mon Sep 17 00:00:00 2001 From: Christian Tzolov Date: Thu, 19 Feb 2026 10:52:00 +0100 Subject: [PATCH 6/8] Make jackson2 default for 0.x Signed-off-by: Christian Tzolov --- .github/workflows/maven-central-release.yml | 4 ++-- mcp-test/pom.xml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/maven-central-release.yml b/.github/workflows/maven-central-release.yml index 8df337ec8..257df99fc 100644 --- a/.github/workflows/maven-central-release.yml +++ b/.github/workflows/maven-central-release.yml @@ -26,8 +26,8 @@ jobs: with: node-version: '20' - - name: Jackson 2 Integration Tests - run: mvn -pl mcp-test -am -Pjackson2 test + - name: Jackson 3 Integration Tests + run: mvn -pl mcp-test -am -Pjackson3 test - name: Build and Test run: mvn clean verify diff --git a/mcp-test/pom.xml b/mcp-test/pom.xml index 798d488f8..e0046b64b 100644 --- a/mcp-test/pom.xml +++ b/mcp-test/pom.xml @@ -152,9 +152,6 @@ jackson3 - - true - io.modelcontextprotocol.sdk @@ -166,6 +163,9 @@ jackson2 + + true + io.modelcontextprotocol.sdk From 36fd4cbe60b5b68a469d635a7160781a1cb5082e Mon Sep 17 00:00:00 2001 From: Christian Tzolov Date: Thu, 19 Feb 2026 10:56:10 +0100 Subject: [PATCH 7/8] Release version 0.18.1 Signed-off-by: Christian Tzolov --- conformance-tests/client-jdk-http-client/pom.xml | 4 ++-- conformance-tests/pom.xml | 2 +- conformance-tests/server-servlet/pom.xml | 4 ++-- mcp-bom/pom.xml | 2 +- mcp-core/pom.xml | 2 +- mcp-json-jackson2/pom.xml | 4 ++-- mcp-json-jackson3/pom.xml | 4 ++-- mcp-spring/mcp-spring-webflux/pom.xml | 8 ++++---- mcp-spring/mcp-spring-webmvc/pom.xml | 10 +++++----- mcp-test/pom.xml | 8 ++++---- mcp/pom.xml | 6 +++--- pom.xml | 2 +- 12 files changed, 28 insertions(+), 28 deletions(-) diff --git a/conformance-tests/client-jdk-http-client/pom.xml b/conformance-tests/client-jdk-http-client/pom.xml index 2f6fd68c5..f486f2e77 100644 --- a/conformance-tests/client-jdk-http-client/pom.xml +++ b/conformance-tests/client-jdk-http-client/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk conformance-tests - 0.18.1-SNAPSHOT + 0.18.1 client-jdk-http-client jar @@ -24,7 +24,7 @@ io.modelcontextprotocol.sdk mcp - 0.18.1-SNAPSHOT + 0.18.1 diff --git a/conformance-tests/pom.xml b/conformance-tests/pom.xml index 893050209..878972798 100644 --- a/conformance-tests/pom.xml +++ b/conformance-tests/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1-SNAPSHOT + 0.18.1 conformance-tests pom diff --git a/conformance-tests/server-servlet/pom.xml b/conformance-tests/server-servlet/pom.xml index 68dfa132d..8c85aceb9 100644 --- a/conformance-tests/server-servlet/pom.xml +++ b/conformance-tests/server-servlet/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk conformance-tests - 0.18.1-SNAPSHOT + 0.18.1 server-servlet jar @@ -24,7 +24,7 @@ io.modelcontextprotocol.sdk mcp - 0.18.1-SNAPSHOT + 0.18.1 diff --git a/mcp-bom/pom.xml b/mcp-bom/pom.xml index 3b7a73f38..518a1cac8 100644 --- a/mcp-bom/pom.xml +++ b/mcp-bom/pom.xml @@ -7,7 +7,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1-SNAPSHOT + 0.18.1 mcp-bom diff --git a/mcp-core/pom.xml b/mcp-core/pom.xml index e666e2595..22ee88675 100644 --- a/mcp-core/pom.xml +++ b/mcp-core/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1-SNAPSHOT + 0.18.1 mcp-core jar diff --git a/mcp-json-jackson2/pom.xml b/mcp-json-jackson2/pom.xml index a97cdf622..7839ee121 100644 --- a/mcp-json-jackson2/pom.xml +++ b/mcp-json-jackson2/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1-SNAPSHOT + 0.18.1 mcp-json-jackson2 jar @@ -70,7 +70,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.1-SNAPSHOT + 0.18.1 com.networknt diff --git a/mcp-json-jackson3/pom.xml b/mcp-json-jackson3/pom.xml index c2ed16365..2e0304dfe 100644 --- a/mcp-json-jackson3/pom.xml +++ b/mcp-json-jackson3/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1-SNAPSHOT + 0.18.1 mcp-json-jackson3 jar @@ -64,7 +64,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.1-SNAPSHOT + 0.18.1 tools.jackson.core diff --git a/mcp-spring/mcp-spring-webflux/pom.xml b/mcp-spring/mcp-spring-webflux/pom.xml index e91cd978f..243e3b543 100644 --- a/mcp-spring/mcp-spring-webflux/pom.xml +++ b/mcp-spring/mcp-spring-webflux/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1-SNAPSHOT + 0.18.1 ../../pom.xml mcp-spring-webflux @@ -26,13 +26,13 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.1-SNAPSHOT + 0.18.1 io.modelcontextprotocol.sdk mcp-test - 0.18.1-SNAPSHOT + 0.18.1 test @@ -45,7 +45,7 @@ io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.1-SNAPSHOT + 0.18.1 test diff --git a/mcp-spring/mcp-spring-webmvc/pom.xml b/mcp-spring/mcp-spring-webmvc/pom.xml index 65728d075..fff2ccb20 100644 --- a/mcp-spring/mcp-spring-webmvc/pom.xml +++ b/mcp-spring/mcp-spring-webmvc/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1-SNAPSHOT + 0.18.1 ../../pom.xml mcp-spring-webmvc @@ -26,7 +26,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.1-SNAPSHOT + 0.18.1 @@ -38,21 +38,21 @@ io.modelcontextprotocol.sdk mcp-test - 0.18.1-SNAPSHOT + 0.18.1 test io.modelcontextprotocol.sdk mcp-spring-webflux - 0.18.1-SNAPSHOT + 0.18.1 test io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.1-SNAPSHOT + 0.18.1 test diff --git a/mcp-test/pom.xml b/mcp-test/pom.xml index e0046b64b..ca24a27f9 100644 --- a/mcp-test/pom.xml +++ b/mcp-test/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1-SNAPSHOT + 0.18.1 mcp-test jar @@ -24,7 +24,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.1-SNAPSHOT + 0.18.1 @@ -156,7 +156,7 @@ io.modelcontextprotocol.sdk mcp-json-jackson3 - 0.18.1-SNAPSHOT + 0.18.1 test @@ -170,7 +170,7 @@ io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.1-SNAPSHOT + 0.18.1 test diff --git a/mcp/pom.xml b/mcp/pom.xml index 177b3562b..2bb6ce443 100644 --- a/mcp/pom.xml +++ b/mcp/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1-SNAPSHOT + 0.18.1 mcp jar @@ -25,13 +25,13 @@ io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.1-SNAPSHOT + 0.18.1 io.modelcontextprotocol.sdk mcp-core - 0.18.1-SNAPSHOT + 0.18.1 diff --git a/pom.xml b/pom.xml index c5464c861..0e7a4a110 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1-SNAPSHOT + 0.18.1 pom https://github.com/modelcontextprotocol/java-sdk From 851c4415a3ac92cb1aa2ca3a75f6e7a84413d444 Mon Sep 17 00:00:00 2001 From: Christian Tzolov Date: Thu, 19 Feb 2026 10:56:45 +0100 Subject: [PATCH 8/8] Next development version Signed-off-by: Christian Tzolov --- conformance-tests/client-jdk-http-client/pom.xml | 4 ++-- conformance-tests/pom.xml | 2 +- conformance-tests/server-servlet/pom.xml | 4 ++-- mcp-bom/pom.xml | 2 +- mcp-core/pom.xml | 2 +- mcp-json-jackson2/pom.xml | 4 ++-- mcp-json-jackson3/pom.xml | 4 ++-- mcp-spring/mcp-spring-webflux/pom.xml | 8 ++++---- mcp-spring/mcp-spring-webmvc/pom.xml | 10 +++++----- mcp-test/pom.xml | 8 ++++---- mcp/pom.xml | 6 +++--- pom.xml | 2 +- 12 files changed, 28 insertions(+), 28 deletions(-) diff --git a/conformance-tests/client-jdk-http-client/pom.xml b/conformance-tests/client-jdk-http-client/pom.xml index f486f2e77..74bdf43d3 100644 --- a/conformance-tests/client-jdk-http-client/pom.xml +++ b/conformance-tests/client-jdk-http-client/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk conformance-tests - 0.18.1 + 0.18.2-SNAPSHOT client-jdk-http-client jar @@ -24,7 +24,7 @@ io.modelcontextprotocol.sdk mcp - 0.18.1 + 0.18.2-SNAPSHOT diff --git a/conformance-tests/pom.xml b/conformance-tests/pom.xml index 878972798..2a8154096 100644 --- a/conformance-tests/pom.xml +++ b/conformance-tests/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1 + 0.18.2-SNAPSHOT conformance-tests pom diff --git a/conformance-tests/server-servlet/pom.xml b/conformance-tests/server-servlet/pom.xml index 8c85aceb9..1fd60df27 100644 --- a/conformance-tests/server-servlet/pom.xml +++ b/conformance-tests/server-servlet/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk conformance-tests - 0.18.1 + 0.18.2-SNAPSHOT server-servlet jar @@ -24,7 +24,7 @@ io.modelcontextprotocol.sdk mcp - 0.18.1 + 0.18.2-SNAPSHOT diff --git a/mcp-bom/pom.xml b/mcp-bom/pom.xml index 518a1cac8..c8b641994 100644 --- a/mcp-bom/pom.xml +++ b/mcp-bom/pom.xml @@ -7,7 +7,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1 + 0.18.2-SNAPSHOT mcp-bom diff --git a/mcp-core/pom.xml b/mcp-core/pom.xml index 22ee88675..44580c615 100644 --- a/mcp-core/pom.xml +++ b/mcp-core/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1 + 0.18.2-SNAPSHOT mcp-core jar diff --git a/mcp-json-jackson2/pom.xml b/mcp-json-jackson2/pom.xml index 7839ee121..643bfb59d 100644 --- a/mcp-json-jackson2/pom.xml +++ b/mcp-json-jackson2/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1 + 0.18.2-SNAPSHOT mcp-json-jackson2 jar @@ -70,7 +70,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.1 + 0.18.2-SNAPSHOT com.networknt diff --git a/mcp-json-jackson3/pom.xml b/mcp-json-jackson3/pom.xml index 2e0304dfe..070e2f8b5 100644 --- a/mcp-json-jackson3/pom.xml +++ b/mcp-json-jackson3/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1 + 0.18.2-SNAPSHOT mcp-json-jackson3 jar @@ -64,7 +64,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.1 + 0.18.2-SNAPSHOT tools.jackson.core diff --git a/mcp-spring/mcp-spring-webflux/pom.xml b/mcp-spring/mcp-spring-webflux/pom.xml index 243e3b543..1731c9b48 100644 --- a/mcp-spring/mcp-spring-webflux/pom.xml +++ b/mcp-spring/mcp-spring-webflux/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1 + 0.18.2-SNAPSHOT ../../pom.xml mcp-spring-webflux @@ -26,13 +26,13 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.1 + 0.18.2-SNAPSHOT io.modelcontextprotocol.sdk mcp-test - 0.18.1 + 0.18.2-SNAPSHOT test @@ -45,7 +45,7 @@ io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.1 + 0.18.2-SNAPSHOT test diff --git a/mcp-spring/mcp-spring-webmvc/pom.xml b/mcp-spring/mcp-spring-webmvc/pom.xml index fff2ccb20..4d3af8726 100644 --- a/mcp-spring/mcp-spring-webmvc/pom.xml +++ b/mcp-spring/mcp-spring-webmvc/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1 + 0.18.2-SNAPSHOT ../../pom.xml mcp-spring-webmvc @@ -26,7 +26,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.1 + 0.18.2-SNAPSHOT @@ -38,21 +38,21 @@ io.modelcontextprotocol.sdk mcp-test - 0.18.1 + 0.18.2-SNAPSHOT test io.modelcontextprotocol.sdk mcp-spring-webflux - 0.18.1 + 0.18.2-SNAPSHOT test io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.1 + 0.18.2-SNAPSHOT test diff --git a/mcp-test/pom.xml b/mcp-test/pom.xml index ca24a27f9..b2e0d1e8b 100644 --- a/mcp-test/pom.xml +++ b/mcp-test/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1 + 0.18.2-SNAPSHOT mcp-test jar @@ -24,7 +24,7 @@ io.modelcontextprotocol.sdk mcp-core - 0.18.1 + 0.18.2-SNAPSHOT @@ -156,7 +156,7 @@ io.modelcontextprotocol.sdk mcp-json-jackson3 - 0.18.1 + 0.18.2-SNAPSHOT test @@ -170,7 +170,7 @@ io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.1 + 0.18.2-SNAPSHOT test diff --git a/mcp/pom.xml b/mcp/pom.xml index 2bb6ce443..9319047af 100644 --- a/mcp/pom.xml +++ b/mcp/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1 + 0.18.2-SNAPSHOT mcp jar @@ -25,13 +25,13 @@ io.modelcontextprotocol.sdk mcp-json-jackson2 - 0.18.1 + 0.18.2-SNAPSHOT io.modelcontextprotocol.sdk mcp-core - 0.18.1 + 0.18.2-SNAPSHOT diff --git a/pom.xml b/pom.xml index 0e7a4a110..13ce3968e 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ io.modelcontextprotocol.sdk mcp-parent - 0.18.1 + 0.18.2-SNAPSHOT pom https://github.com/modelcontextprotocol/java-sdk