gnodet commented on PR #21800: URL: https://github.com/apache/camel/pull/21800#issuecomment-4037535130
@jamesnetherton Good catch — you're right. My analysis was thinking about JVM mode where both Jackson 2 and 3 coexist fine via different packages. But in GraalVM native compilation, the native image builder traces all reachable code paths and will discover `tools.jackson` classes used internally, not just public API. If CEQ doesn't have Jackson 3 dependencies, those classes won't be resolvable at native build time. So the impact is broader: **all ~85+ components** that use `tools.jackson` types (whether internally or in public API) would need Jackson 3 available on the classpath for CEQ native builds. This affects essentially every component touched by this PR that has a CEQ extension. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
