Skip to content

Commit 8491769

Browse files
committed
Make jackson2 default for 0.x
Signed-off-by: Christian Tzolov <christian.tzolov@broadcom.com>
1 parent 5a47622 commit 8491769

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/maven-central-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
with:
2727
node-version: '20'
2828

29-
- name: Jackson 2 Integration Tests
30-
run: mvn -pl mcp-test -am -Pjackson2 test
29+
- name: Jackson 3 Integration Tests
30+
run: mvn -pl mcp-test -am -Pjackson3 test
3131

3232
- name: Build and Test
3333
run: mvn clean verify

mcp-test/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,6 @@
152152
<profiles>
153153
<profile>
154154
<id>jackson3</id>
155-
<activation>
156-
<activeByDefault>true</activeByDefault>
157-
</activation>
158155
<dependencies>
159156
<dependency>
160157
<groupId>io.modelcontextprotocol.sdk</groupId>
@@ -166,6 +163,9 @@
166163
</profile>
167164
<profile>
168165
<id>jackson2</id>
166+
<activation>
167+
<activeByDefault>true</activeByDefault>
168+
</activation>
169169
<dependencies>
170170
<dependency>
171171
<groupId>io.modelcontextprotocol.sdk</groupId>

0 commit comments

Comments
 (0)