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
2 changes: 1 addition & 1 deletion samples/client/echo_api/java/apache-httpclient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<httpclient-version>5.2.1</httpclient-version>
<jackson-version>2.19.2</jackson-version>
<jackson-version>2.21.1</jackson-version>
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.

P2: Jackson core/annotations were bumped to 2.21.x while jackson-databind stays at 2.19.x. Jackson docs state core components must share the same minor version, so this mismatch can cause incompatibilities. Align jackson-databind-version with jackson-version.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At samples/client/echo_api/java/apache-httpclient/pom.xml, line 273:

<comment>Jackson core/annotations were bumped to 2.21.x while jackson-databind stays at 2.19.x. Jackson docs state core components must share the same minor version, so this mismatch can cause incompatibilities. Align jackson-databind-version with jackson-version.</comment>

<file context>
@@ -270,7 +270,7 @@
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <httpclient-version>5.2.1</httpclient-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>
Fix with Cubic

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