We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The versions of the jackson jar files are inconsistent
com.fasterxml.jackson.core:jackson-annotations:jar:2.13.1 com.fasterxml.jackson.core:jackson-core:jar:2.13.1 com.fasterxml.jackson.core:jackson-databind:jar:2.13.4.2 com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.12.2
The text was updated successfully, but these errors were encountered:
Indeed. I'm using the lastest version of jersey3 implementation https://mvnrepository.com/artifact/com.oracle.oci.sdk/oci-java-sdk-common-httpclient-jersey3/3.29.0 . In this version jackson-core is 2.15.2 and jackson-databind 2.13.4.2.
I tried to update my application to spring-boot 3.2 and during the deploy phase I got the exception: "class com.fasterxml.jackson.databind.cfg.DatatypeFeatures not found". This class was introduced in jackson-databind 2.14 (https://fasterxml.github.io/jackson-databind/javadoc/2.14/com/fasterxml/jackson/databind/cfg/DatatypeFeatures.html).
My current workaround is to force to import an updated version of jackson-databind:
Sorry, something went wrong.
No branches or pull requests
The versions of the jackson jar files are inconsistent
The text was updated successfully, but these errors were encountered: