ppalaga commented on issue #642: java.lang.NoClassDefFoundError with JDK 11+ URL: https://github.com/apache/camel-quarkus/issues/642#issuecomment-576572571 > as per https://camel.apache.org/camel-quarkus/latest/first-steps.html , it tells you to replace org.apache.camel.quarkus:camel-quarkus-core-xml with org.apache.camel.quarkus:camel-quarkus-bom. That page recommends to use `camel-quarkus-bom` as the parent of your maven project so that you get the dependency versions of camel quarkus extensions (and their transitive dependencies) managed. There is no mention of `camel-quarkus-core-xml`. What I mean is that you need to add something like the following to your project: ``` <project> ... <dependencies> ... <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-core-xml</artifactId> </dependency> ... </dependencies> ... </project> ```
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services