You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/12/16 06:31:53 UTC

[camel] branch master updated: CAMEL-15946: Fix javadoc WARN about javax.annotation

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


The following commit(s) were added to refs/heads/master by this push:
     new dd9ff66  CAMEL-15946: Fix javadoc WARN about javax.annotation
dd9ff66 is described below

commit dd9ff66c5e447ea35fbbed162db6a3655fe07490
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Dec 16 07:30:52 2020 +0100

    CAMEL-15946: Fix javadoc WARN about javax.annotation
---
 core/camel-endpointdsl/pom.xml | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/core/camel-endpointdsl/pom.xml b/core/camel-endpointdsl/pom.xml
index c9e3278..e27a280 100644
--- a/core/camel-endpointdsl/pom.xml
+++ b/core/camel-endpointdsl/pom.xml
@@ -60,6 +60,23 @@
                     <groupId>org.apache.camel</groupId>
                     <artifactId>camel-threadpoolfactory-vertx</artifactId>
                 </exclusion>
+                <!-- exclude javax.annotation packages as they cause javadoc WARN on java8 vs java11 -->
+                <exclusion>
+                    <groupId>javax.annotation</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.jboss.spec.javax.annotation</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>jakarta.annotation</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>org.apache.drill.exec</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
         <dependency>