GitHub user gzurowski opened a pull request: https://github.com/apache/camel/pull/2398
Fix Javadoc linting issues Some modules use custom Javadoc tags that cause the build to break when the Javadoc linter checks the sources. This had been disabled by providing additional parameters to the maven-javadoc-plugin. The element name for providing additional parameters has changed since maven-javadoc-plugin version 3.0.0, therefore the previous fix didn't work anymore. This commit fixes this problem and disables Javadoc linting by using the correct element `additionalParamaeters`. You can merge this pull request into a Git repository by running: $ git pull https://github.com/apache/camel feature/fix-javadoc-release-issues Alternatively you can review and apply these changes as the patch at: https://github.com/apache/camel/pull/2398.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #2398 ---- commit a8fc734ae60c6e54150d5e22049bdb3b02acc230 Author: Gregor Zurowski <gregor@...> Date: 2018-06-29T08:08:20Z Fix Javadoc linting issues Some modules use custom Javadoc tags that cause the build to break when the Javadoc linter checks the sources. This had been disabled by providing additional parameters to the maven-javadoc-plugin. The element name for providing additional parameters has changed since maven-javadoc-plugin version 3.0.0, therefore the previous fix didn't work anymore. This commit fixes this problem and disables Javadoc linting by using the correct element `additionalParamaeters`. Signed-off-by: Gregor Zurowski <gre...@zurowski.org> ---- ---