You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gz...@apache.org on 2022/01/31 10:43:31 UTC

[camel] branch main updated: Disable Javaloc linting for Java 11

This is an automated email from the ASF dual-hosted git repository.

gzurowski pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new fc9c9b4  Disable Javaloc linting for Java 11
fc9c9b4 is described below

commit fc9c9b4fad6fb54ef1ca994bc03aae79269a815d
Author: Gregor Zurowski <gr...@zurowski.org>
AuthorDate: Mon Jan 31 11:43:01 2022 +0100

    Disable Javaloc linting for Java 11
    
    Java 11 is more picky about Javadoc issues and will flag
    those as errors when building. This commit disables Javadoc
    linting, so a Camel release can be build without breaking.
    This should be a temporary solution until all Javadoc issues
    have been fixed.
---
 pom.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pom.xml b/pom.xml
index 4f319c3..deafcb6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -751,6 +751,8 @@
                         <configuration>
                             <source>8</source>
                             <additionalOptions>${javadoc.opts}</additionalOptions>
+                            <!-- disable Javadoc linting for buildung the release with Java 11 -->
+                            <doclint>none</doclint>
                         </configuration>
                     </plugin>
                     <!-- We want to sign the artifact, the POM, and all attached artifacts -->