ppalaga commented on issue #3569: URL: https://github.com/apache/camel-quarkus/issues/3569#issuecomment-1049090150
Thanks for the report, @albert0815. Is the https://github.com/ronmamo/reflections/issues/273 issue triggered by Camel code? If so, which extension? camel-quarkus-bom gets the version of org.reflections:reflections via imported io.debezium:debezium-bom:1.6.1.Final, line 502. So, ideally the fix should go there. As a quick workaround, you can add the following before the BOM imports in your pom.xml: ``` ... <dependencyManagement> <dependencies> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.10.2</version> </dependency> <!-- BOM imports here ... --> </dependencies> </dependencyManagement> ... ``` -- 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]
