zbendhiba commented on a change in pull request #2509: URL: https://github.com/apache/camel-quarkus/pull/2509#discussion_r620055165
########## File path: extensions/atlasmap/deployment/src/main/java/org/apache/camel/quarkus/component/atlasmap/deployment/AtlasmapProcessor.java ########## @@ -361,6 +75,35 @@ NativeImageResourceBuildItem resource() { return new NativeImageResourceBuildItem("META-INF/services/atlas/module/atlas.module"); } + @BuildStep + void addDependencies(BuildProducer<IndexDependencyBuildItem> indexDependency) { + indexDependency.produce(new IndexDependencyBuildItem("io.atlasmap", "atlas-core")); + indexDependency.produce(new IndexDependencyBuildItem("io.atlasmap", "atlas-model")); + indexDependency.produce(new IndexDependencyBuildItem("io.atlasmap", "atlas-xml-model")); + indexDependency.produce(new IndexDependencyBuildItem("io.atlasmap", "atlas-java-model")); + indexDependency.produce(new IndexDependencyBuildItem("io.atlasmap", "atlas-json-model")); + indexDependency.produce(new IndexDependencyBuildItem("io.atlasmap", "atlas-csv-model")); + indexDependency.produce(new IndexDependencyBuildItem("io.atlasmap", "atlas-dfdl-model")); Review comment: I'll open one, unless you've already done !! -- 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