Hello fellow Cameleers, In Camel Quarkus, we have recently introduced the possibility to embed some resources in the native executable via simple configuration (1). We basically specify include/exclude patterns (2) in application.properties, and embed matching resources in the native executable at build time.
The same kind of need has already been filed at Quarkus level (3). So it could make sense to open a discussion to promote include/exclude patterns to quarkus. Especially, would one see any issue about proposing the promotion of PathFilter (4) from Camel Quarkus and AntPathMatcher (5) from Camel ? (1) https://github.com/apache/camel-quarkus/commit/b0600f9f7a637b1a17167f86f7208fcc98739012 (2) https://github.com/apache/camel-quarkus/blob/abb274d1d3ecd0aa3458c2ee0628d756d78825d2/docs/modules/ROOT/pages/native-mode.adoc#embedding-resource-in-native-executable (3) https://github.com/quarkusio/quarkus/issues/2746 (4) https://github.com/apache/camel-quarkus/blob/master/extensions-core/core/deployment/src/main/java/org/apache/camel/quarkus/core/deployment/util/PathFilter.java (5) https://github.com/apache/camel/blob/master/core/camel-util/src/main/java/org/apache/camel/util/AntPathMatcher.java Cheers, Alex