From 167ccefba6e7223376ab05a0c3c32cbe2b0353af Mon Sep 17 00:00:00 2001 From: Ryan Ernst Date: Fri, 20 Nov 2015 12:18:30 -0800 Subject: [PATCH] Add reference to gradle discussion on javadoc options --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index 15d24943117..ce0f6c66be8 100644 --- a/build.gradle +++ b/build.gradle @@ -102,6 +102,7 @@ subprojects { // by itself is not added to the options. By adding quiet, both this option and // the "value" -quiet is added, separated by a space. This is ok since the javadoc // command already adds -quiet, so we are just duplicating it + // see https://discuss.gradle.org/t/add-custom-javadoc-option-that-does-not-take-an-argument/5959 javadoc.options.addStringOption('Xdoclint:all,-missing', '-quiet') } }