suppress javadoc lint warning (#3222)

This commit is contained in:
sv99 2023-07-26 14:28:08 +03:00 committed by GitHub
parent 772646f95b
commit da6ed0f729
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -226,5 +226,11 @@ subprojects {
tasks.getByPath(':release').dependsOn(publish)
tasks.getByPath(':snapshot').dependsOn(publish)
tasks.withType(Javadoc).tap {
configureEach {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}
}