This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit b60903bbf647c87af386d7a9fce132f6865da38d Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Thu Mar 26 21:22:52 2020 +0100 CAMEL-14796: Remove big depedecy tree for mvn in camel catalog JARs --- catalog/camel-catalog-lucene/pom.xml | 14 ++++++++++++++ catalog/camel-catalog/pom.xml | 14 ++++++++++++++ catalog/camel-main-maven-plugin/pom.xml | 14 ++++++++++++++ catalog/camel-report-maven-plugin/pom.xml | 14 ++++++++++++++ catalog/camel-route-parser/pom.xml | 14 ++++++++++++++ catalog/dummy-component/pom.xml | 14 ++++++++++++++ 6 files changed, 84 insertions(+) diff --git a/catalog/camel-catalog-lucene/pom.xml b/catalog/camel-catalog-lucene/pom.xml index 11e9c09..7980630 100644 --- a/catalog/camel-catalog-lucene/pom.xml +++ b/catalog/camel-catalog-lucene/pom.xml @@ -54,6 +54,20 @@ <version>${lucene-version}</version> </dependency> + <!-- disable all components --> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-allcomponents</artifactId> + <version>${project.version}</version> + <type>pom</type> + <exclusions> + <exclusion> + <groupId>org.apache.camel</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> diff --git a/catalog/camel-catalog/pom.xml b/catalog/camel-catalog/pom.xml index 3271df0..2b6ce42 100644 --- a/catalog/camel-catalog/pom.xml +++ b/catalog/camel-catalog/pom.xml @@ -56,6 +56,20 @@ <version>${project.version}</version> </dependency> + <!-- disable all components --> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-allcomponents</artifactId> + <version>${project.version}</version> + <type>pom</type> + <exclusions> + <exclusion> + <groupId>org.apache.camel</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + <!-- testing --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> diff --git a/catalog/camel-main-maven-plugin/pom.xml b/catalog/camel-main-maven-plugin/pom.xml index 0f82f82..7272727 100644 --- a/catalog/camel-main-maven-plugin/pom.xml +++ b/catalog/camel-main-maven-plugin/pom.xml @@ -129,6 +129,20 @@ <version>${roaster-version}</version> </dependency> + <!-- disable all components --> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-allcomponents</artifactId> + <version>${project.version}</version> + <type>pom</type> + <exclusions> + <exclusion> + <groupId>org.apache.camel</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + <!-- logging --> <dependency> <groupId>org.apache.logging.log4j</groupId> diff --git a/catalog/camel-report-maven-plugin/pom.xml b/catalog/camel-report-maven-plugin/pom.xml index 37a9e25..2813026 100644 --- a/catalog/camel-report-maven-plugin/pom.xml +++ b/catalog/camel-report-maven-plugin/pom.xml @@ -97,6 +97,20 @@ <version>${project.version}</version> </dependency> + <!-- disable all components --> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-allcomponents</artifactId> + <version>${project.version}</version> + <type>pom</type> + <exclusions> + <exclusion> + <groupId>org.apache.camel</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + <!-- camel route parser --> <dependency> <groupId>org.apache.camel</groupId> diff --git a/catalog/camel-route-parser/pom.xml b/catalog/camel-route-parser/pom.xml index 369cbf5..3ad956d 100644 --- a/catalog/camel-route-parser/pom.xml +++ b/catalog/camel-route-parser/pom.xml @@ -53,6 +53,20 @@ <artifactId>camel-tooling-util</artifactId> </dependency> + <!-- disable all components --> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-allcomponents</artifactId> + <version>${project.version}</version> + <type>pom</type> + <exclusions> + <exclusion> + <groupId>org.apache.camel</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + <!-- only test scopes for camel as we have no runtime dependency on camel --> <dependency> <groupId>org.apache.camel</groupId> diff --git a/catalog/dummy-component/pom.xml b/catalog/dummy-component/pom.xml index dfaaa43..f60226d 100644 --- a/catalog/dummy-component/pom.xml +++ b/catalog/dummy-component/pom.xml @@ -41,6 +41,20 @@ <version>${project.version}</version> </dependency> + <!-- disable all components --> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-allcomponents</artifactId> + <version>${project.version}</version> + <type>pom</type> + <exclusions> + <exclusion> + <groupId>org.apache.camel</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + </dependency> + </dependencies> <build>