-
Notifications
You must be signed in to change notification settings - Fork 31
updated jackson dependency #94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
16dca5c
fix(bug): isNewAbha null issue
2159bb0
fix: coderabbit suggestions
0d974fc
Merge branch 'PSMRI:develop' into develop
helenKaryamsetty ad4cb57
fix: updated ci properties for prod
ee53b5a
fix: updated ci properties for abdm
c4eeec1
Merge branch 'develop' into develop
helenKaryamsetty d4f90d1
Merge branch 'PSMRI:develop' into develop
helenKaryamsetty d169521
Merge branch 'PSMRI:develop' into develop
helenKaryamsetty 97df66f
fix: updated fasterxml jackson dependency to fix scheduler issue
d9e9a7d
fix: updated jackson version
029baf2
fix: removed versioning for jackson
200d8cf
Merge branch 'develop' into develop
helenKaryamsetty dd01b9d
fix: Update pom.xml
helenKaryamsetty 11164d0
fix: modified jackson version for java 8 times
67faf11
Merge branch 'PSMRI:develop' into develop
helenKaryamsetty d97c69a
Merge branch 'develop' of https://github.com/helenKaryamsetty/FHIR-AP…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
❓ Verification inconclusive
Ensure Jackson module versions align with Spring Boot BOM
Spring Boot Starter Parent (3.2.2) already manages Jackson versions. Manually adding
jackson-datatype-jsr310:2.17.0may introduce version skew with other Jackson modules (jackson-core,jackson-databind,jackson-annotations) that are BOM-managed.rg "<artifactId>jackson-" -A1 pom.xml<version>so BOM supplies a unified version:<dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> - <version>2.17.0</version> </dependency><dependencyManagement>using a Maven property:This ensures all Jackson modules remain in sync and eases future upgrades.
Align Jackson module versions with Spring Boot BOM
Spring Boot Starter Parent 3.2.2 manages all Jackson dependencies via its BOM. Explicitly pinning
jackson-datatype-jsr310to 2.17.0 can create a version mismatch withjackson-core,jackson-databind, etc. To keep your Jackson modules in sync, remove the manual<version>(or centralize versions under<dependencyManagement>).• File pom.xml (around lines 159–163):
<dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> - <version>2.17.0</version> </dependency>Optional alternative—centralize Jackson versions:
📝 Committable suggestion
🤖 Prompt for AI Agents