Skip to content

Commit 2099dcc

Browse files
author
Andrew Omondi
committed
fix: ensure javadocs are generated in the build
1 parent 575fda4 commit 2099dcc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ def pomConfig = {
4848
}
4949
}
5050

51-
tasks.withType(Javadoc).all { enabled = false }
51+
tasks.withType(Javadoc).configureEach {
52+
enabled = false
53+
options.addStringOption('Xdoclint:-missing', '-quiet')
54+
}
5255

5356
tasks.jar {
5457
manifest {

0 commit comments

Comments
 (0)