Skip to content
Merged
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 pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.15.0</version>
<version>2.18.6</version>
</dependency>
Comment on lines 66 to 70
Copy link

Copilot AI Mar 2, 2026

Choose a reason for hiding this comment

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

jackson-core is now managed at 2.18.6, but jackson-databind and jackson-annotations are still pinned to 2.14.0 in the same dependencyManagement block. Jackson modules are intended to be kept on the same version line; mixing 2.18.x core with 2.14.x databind/annotations can lead to dependency convergence issues and runtime incompatibilities. Please align all Jackson artifacts to the same version (or import the Jackson BOM and manage a single version property).

Copilot uses AI. Check for mistakes.
Copy link
Member

Choose a reason for hiding this comment

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

@copilot open a new pull request to apply changes based on this feedback

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand Down
Loading