-
-
Notifications
You must be signed in to change notification settings - Fork 221
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
native compilation error with version 2.17.0 of com.fasterxml.jackson.dataformat:jackson-dataformat-xml #645
Comments
This could be a version discrepancy with your set up (older version of Other than that, I don't think there is anything this module can do about the issue: it would probably require your adding of reference to some type to retain for Native image. |
@c-schmitz-tsystems hi there. The method In my case, spring-boot-starter-json was loading it with version 2.15.4. And the solution was to make those dependencies having the identical versions: 2.15.4 or 2.17.0 |
Thank you for sharing @rpkyrych. This makes sense. |
Same issue here. I had a dependency to <dependency>
<groupId>org.openapitools</groupId>
<artifactId>jackson-databind-nullable</artifactId>
<version>0.2.6</version>
</dependency> which included jackson-databind 2.14. Adding the dependency <dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.18.2</version>
</dependency> solved the issue. |
Running Quarkus native-image plugin on MANDREL 23.1.2.0 JDK 21.0.2+13-LTS
The text was updated successfully, but these errors were encountered: