Skip to content

Commit 9ee9d2e

Browse files
committed
disables javadoc ultrachecks in java8
1 parent b317860 commit 9ee9d2e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,13 @@ allprojects {
1818
tasks.eclipse.doLast {
1919
delete ".project"
2020
}
21+
22+
// DISABLES JAVADOC ULTRACHECKS IN JDK8
23+
if (JavaVersion.current().isJava8Compatible()) {
24+
allprojects {
25+
tasks.withType(Javadoc) {
26+
options.addStringOption('Xdoclint:none', '-quiet')
27+
}
28+
}
29+
}
30+

0 commit comments

Comments
 (0)