This is an automated email from the ASF dual-hosted git repository.
jinmeiliao pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new f289dfe GEODE-3: exclude internal packages when generating javadoc
(#2475)
f289dfe is described below
commit f289dfe296616ef0b79088fcdffd4f7a98c1894c
Author: jinmeiliao <[email protected]>
AuthorDate: Fri Sep 14 21:38:45 2018 -0700
GEODE-3: exclude internal packages when generating javadoc (#2475)
* javadoc task will fail if we include internal packages using java9 and
later
---
gradle/java.gradle | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gradle/java.gradle b/gradle/java.gradle
index d525813..f4630c7 100644
--- a/gradle/java.gradle
+++ b/gradle/java.gradle
@@ -102,6 +102,8 @@ subprojects {
destinationDir = file("$buildDir/javadoc")
options.addStringOption('Xdoclint:none', '-quiet')
options.encoding = 'UTF-8'
+ exclude "**/internal/**"
+
classpath += configurations.compileOnly
}
}