This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 542d93f Use `type` instead of `classifer` for javadoc d... 542d93f is described below commit 542d93f5b8b04276952b2f4d663b825f95305ab7 Author: Zoran Regvart <zregv...@apache.org> AuthorDate: Mon May 7 11:42:42 2018 +0200 Use `type` instead of `classifer` for javadoc d... ...ependencies We should be using `type` instead of `classifer` for javadoc dependencies, as using `classifier` in a multi-module build will default to `target/classes` of the dependency if a `target/module-classifier.jar` is not present, whereas using `type` will try to resolve the dependency and possibly load one from the local or remote repository. This should fix the issue breaking the build currently. --- components/camel-as2/camel-as2-component/pom.xml | 2 +- components/camel-box/camel-box-component/pom.xml | 4 ++-- components/camel-braintree/pom.xml | 2 +- components/camel-google-calendar/pom.xml | 2 +- components/camel-google-drive/pom.xml | 2 +- components/camel-google-mail/pom.xml | 2 +- components/camel-linkedin/camel-linkedin-component/pom.xml | 2 +- components/camel-twilio/pom.xml | 2 +- components/camel-zendesk/pom.xml | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/components/camel-as2/camel-as2-component/pom.xml b/components/camel-as2/camel-as2-component/pom.xml index 5d6fec0..47ad83e 100644 --- a/components/camel-as2/camel-as2-component/pom.xml +++ b/components/camel-as2/camel-as2-component/pom.xml @@ -63,7 +63,7 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-as2-api</artifactId> <version>${project.version}</version> - <classifier>javadoc</classifier> + <type>javadoc</type> <scope>provided</scope> </dependency> diff --git a/components/camel-box/camel-box-component/pom.xml b/components/camel-box/camel-box-component/pom.xml index 5b85302..c02e0c8 100644 --- a/components/camel-box/camel-box-component/pom.xml +++ b/components/camel-box/camel-box-component/pom.xml @@ -77,7 +77,7 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-box-api</artifactId> <version>${project.version}</version> - <classifier>javadoc</classifier> + <type>javadoc</type> <scope>provided</scope> </dependency> @@ -86,7 +86,7 @@ <groupId>com.box</groupId> <artifactId>box-java-sdk</artifactId> <version>${box-java-sdk-version}</version> - <classifier>javadoc</classifier> + <type>javadoc</type> <scope>provided</scope> </dependency> diff --git a/components/camel-braintree/pom.xml b/components/camel-braintree/pom.xml index 09892e9..6f193b7 100644 --- a/components/camel-braintree/pom.xml +++ b/components/camel-braintree/pom.xml @@ -68,7 +68,7 @@ <groupId>com.braintreepayments.gateway</groupId> <artifactId>braintree-java</artifactId> <version>${braintree-gateway-version}</version> - <classifier>javadoc</classifier> + <type>javadoc</type> <scope>provided</scope> <optional>true</optional> <exclusions> diff --git a/components/camel-google-calendar/pom.xml b/components/camel-google-calendar/pom.xml index c1dd054..fb4c959 100644 --- a/components/camel-google-calendar/pom.xml +++ b/components/camel-google-calendar/pom.xml @@ -83,7 +83,7 @@ <groupId>com.google.apis</groupId> <artifactId>google-api-services-calendar</artifactId> <version>${google-api-services-calendar-version}</version> - <classifier>javadoc</classifier> + <type>javadoc</type> <scope>provided</scope> </dependency> diff --git a/components/camel-google-drive/pom.xml b/components/camel-google-drive/pom.xml index c38c5c2..3b426a7 100644 --- a/components/camel-google-drive/pom.xml +++ b/components/camel-google-drive/pom.xml @@ -83,7 +83,7 @@ <groupId>com.google.apis</groupId> <artifactId>google-api-services-drive</artifactId> <version>${google-api-services-drive-version}</version> - <classifier>javadoc</classifier> + <type>javadoc</type> <scope>provided</scope> </dependency> diff --git a/components/camel-google-mail/pom.xml b/components/camel-google-mail/pom.xml index 8cb41e8..8ebb840 100644 --- a/components/camel-google-mail/pom.xml +++ b/components/camel-google-mail/pom.xml @@ -96,7 +96,7 @@ <groupId>com.google.apis</groupId> <artifactId>google-api-services-gmail</artifactId> <version>${google-api-services-mail-version}</version> - <classifier>javadoc</classifier> + <type>javadoc</type> <scope>provided</scope> </dependency> diff --git a/components/camel-linkedin/camel-linkedin-component/pom.xml b/components/camel-linkedin/camel-linkedin-component/pom.xml index 6954521..976dcf2 100644 --- a/components/camel-linkedin/camel-linkedin-component/pom.xml +++ b/components/camel-linkedin/camel-linkedin-component/pom.xml @@ -65,7 +65,7 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-linkedin-api</artifactId> <version>${project.version}</version> - <classifier>javadoc</classifier> + <type>javadoc</type> <scope>provided</scope> </dependency> diff --git a/components/camel-twilio/pom.xml b/components/camel-twilio/pom.xml index 2eeaedb..bc01c2e 100644 --- a/components/camel-twilio/pom.xml +++ b/components/camel-twilio/pom.xml @@ -69,7 +69,7 @@ <groupId>com.twilio.sdk</groupId> <artifactId>twilio</artifactId> <version>${twilio-version}</version> - <classifier>javadoc</classifier> + <type>javadoc</type> <scope>provided</scope> </dependency> diff --git a/components/camel-zendesk/pom.xml b/components/camel-zendesk/pom.xml index 740b62b..76ee768 100644 --- a/components/camel-zendesk/pom.xml +++ b/components/camel-zendesk/pom.xml @@ -189,7 +189,7 @@ <groupId>com.cloudbees.thirdparty</groupId> <artifactId>zendesk-java-client</artifactId> <version>${zendesk-client-version}</version> - <classifier>javadoc</classifier> + <type>javadoc</type> </dependency> </dependencies> </plugin> -- To stop receiving notification emails like this one, please contact zregv...@apache.org.