Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jersey-version>2.37</jersey-version>
<jackson-version>2.19.2</jackson-version>
<jackson-version>2.21.1</jackson-version>
<jackson-databind-version>2.19.2</jackson-databind-version>
Comment on lines +333 to 334
Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot Mar 1, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1: This update introduces mixed Jackson minor versions (core/annotations at 2.21.x and databind at 2.19.x). Align Jackson core components to the same minor version to avoid runtime incompatibilities.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At samples/client/others/java/jersey2-oneOf-duplicates/pom.xml, line 333:

<comment>This update introduces mixed Jackson minor versions (`core/annotations` at 2.21.x and `databind` at 2.19.x). Align Jackson core components to the same minor version to avoid runtime incompatibilities.</comment>

<file context>
@@ -330,7 +330,7 @@
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <jersey-version>2.37</jersey-version>
-        <jackson-version>2.19.2</jackson-version>
+        <jackson-version>2.21.1</jackson-version>
         <jackson-databind-version>2.19.2</jackson-databind-version>
         <jackson-databind-nullable-version>0.2.9</jackson-databind-nullable-version>
</file context>
Suggested change
<jackson-version>2.21.1</jackson-version>
<jackson-databind-version>2.19.2</jackson-databind-version>
<jackson-version>2.21.1</jackson-version>
<jackson-databind-version>2.21.1</jackson-databind-version>
Fix with Cubic

<jackson-databind-nullable-version>0.2.9</jackson-databind-nullable-version>
<jakarta-annotation-version>1.3.5</jakarta-annotation-version>
Expand Down
Loading