-
Notifications
You must be signed in to change notification settings - Fork 31
Modified jackson dependencies #104
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
33 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β¦
93ca69e
fix: jackson dependency version removal
bcf12d3
Merge branch 'develop' of https://github.com/helenKaryamsetty/FHIR-API
c2bb8ff
fix: updated jackson properties
ede401d
Merge branch 'develop' of https://github.com/helenKaryamsetty/FHIR-APβ¦
1e54fa6
fix: update properties
382de2e
fix: removed jackson dependency completely
433f837
fix: added hapi base and modified hapi fhir dependency
f2c9733
Merge branch 'develop' of https://github.com/helenKaryamsetty/FHIR-APβ¦
1111177
fix: added all null checks to fhir bundle
f90f001
Merge branch 'develop' of https://github.com/helenKaryamsetty/FHIR-APβ¦
f27d531
fix: missed null checks
12bc6c2
fix: adding jackson properties
f0c9d13
Merge branch 'PSMRI:develop' into develop
helenKaryamsetty bbd8733
fix: jackson versions modification
6f21692
Merge branch 'develop' of https://github.com/helenKaryamsetty/FHIR-APβ¦
203fe09
Merge branch 'PSMRI:develop' into develop
helenKaryamsetty 2c823aa
Merge branch 'develop' of https://github.com/helenKaryamsetty/FHIR-API
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.
Uniform Jackson Version Required
The parent Spring Boot BOM already manages Jackson versions. Introducing
jackson-core,jackson-databind, andjackson-annotationsat explicit 2.14.2 while leaving the other Jackson modules (e.g.jackson-datatype-jsr310andjackson-datatype-joda) unversioned will result in mismatched Jackson artifacts at build/runtime.Align all Jackson modules to the same version via the POMβs
<dependencyManagement>section and drop direct<version>tags in<dependencies>. For example:This ensures all Jackson artifacts remain in sync with the desired version.
π Committable suggestion
π€ Prompt for AI Agents