davsclaus commented on a change in pull request #1984: URL: https://github.com/apache/camel-quarkus/pull/1984#discussion_r517441795
########## File path: extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/CamelProcessor.java ########## @@ -346,4 +347,10 @@ void unremovableBeans(BuildProducer<AdditionalBeanBuildItem> beanProducer) { .map(CamelRoutesBuilderClassBuildItem::new) .collect(Collectors.toList()); } + + @BuildStep + NativeImageResourceBuildItem initResources() { + return new NativeImageResourceBuildItem( + "META-INF/services/org/apache/camel/bean-processor-factory"); Review comment: Oh that seems correct as there are a bunch of files in those folders for various Camel components that are discovered via classpath/factory-finder and so quarkus needs to ensure those meta files are included. ---------------------------------------------------------------- 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