This is an automated email from the ASF dual-hosted git repository. astefanutti pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit b1fd43bde41b7b2f1bcf6d5b830dcc8970928080 Author: Antonin Stefanutti <[email protected]> AuthorDate: Wed Oct 30 11:24:38 2019 +0100 fix(quarkus): Let Camel Quarkus drive the Camel version for catalog generation --- build/maven/pom-catalog.xml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/build/maven/pom-catalog.xml b/build/maven/pom-catalog.xml index 2a212f4..c8a7d86 100644 --- a/build/maven/pom-catalog.xml +++ b/build/maven/pom-catalog.xml @@ -76,17 +76,13 @@ </execution> </executions> <dependencies> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-catalog</artifactId> - <version>${camel.version}</version> - </dependency> + <!-- The Camel dependency version is driven by Camel Quarkus --> <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-catalog-quarkus</artifactId> <version>${camel-quarkus.version}</version> </dependency> - <!-- This is required to retrieve the Quarkus version --> + <!-- This is required to retrieve the Quarkus dependency version --> <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-core</artifactId>
