Skip to content

Commit 1300527

Browse files
authored
suppress missing javadoc warnings (#628)
1 parent ec974b2 commit 1300527

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

buildSrc/src/main/kotlin/splunk.android-library-conventions.gradle.kts

+4
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@ project.afterEvaluate {
9595
val javaCompile = firstVariant.javaCompileProvider.get()
9696
classpath += javaCompile.classpath
9797
classpath += javaCompile.outputs.files
98+
99+
with(options as StandardJavadocDocletOptions) {
100+
addBooleanOption("Xdoclint:all,-missing", true)
101+
}
98102
}
99103

100104
val javadocJar by tasks.registering(Jar::class) {

0 commit comments

Comments
 (0)