mirror of
https://github.com/AppleCommander/bastools.git
synced 2025-01-04 23:29:24 +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')
|
||
|
}
|
||
|
}
|
||
|
}
|