mirror of
https://github.com/AppleCommander/bastools.git
synced 2025-01-03 01:29:28 +00:00
8 lines
164 B
Groovy
8 lines
164 B
Groovy
|
if (JavaVersion.current().isJava8Compatible()) {
|
||
|
allprojects {
|
||
|
tasks.withType(Javadoc) {
|
||
|
options.addStringOption('Xdoclint:none', '-quiet')
|
||
|
}
|
||
|
}
|
||
|
}
|