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

michel pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 826c506  [BEAM-6973] disable doclint missing
     new f4aae53  Merge pull request #8200: [BEAM-6973] disable doclint missing
826c506 is described below

commit 826c506f67410e7cdfe9dcd0e77d450dff80955d
Author: Michael Luckey <25622840+adude3...@users.noreply.github.com>
AuthorDate: Tue Apr 2 19:30:56 2019 +0200

    [BEAM-6973] disable doclint missing
---
 .../src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy   | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 
a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy 
b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
index 2d4a01c..a331053 100644
--- a/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
+++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
@@ -756,7 +756,10 @@ class BeamModulePlugin implements Plugin<Project> {
       project.checkstyle { toolVersion = "8.7" }
 
       // Configures javadoc plugin and ensure check runs javadoc.
-      project.tasks.withType(Javadoc) { options.encoding = 'UTF-8' }
+      project.tasks.withType(Javadoc) {
+        options.encoding = 'UTF-8'
+        options.addBooleanOption('Xdoclint:-missing', true)
+      }
       project.check.dependsOn project.javadoc
 
       // Apply the eclipse and apt-eclipse plugins.  This adds the "eclipse" 
task and

Reply via email to