Skip to content

Commit 27f097e

Browse files
committed
build: Ignore missing Javadoc tags in javadoc plugin
Set doclint to all,-missing on maven-javadoc-plugin so that missing @param (and other missing-tag) reports do not fail the javadoc jar build, while keeping every other doclint check (bad HTML, broken references, etc.).
1 parent e9cfa18 commit 27f097e

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,9 @@
233233
<groupId>org.apache.maven.plugins</groupId>
234234
<artifactId>maven-javadoc-plugin</artifactId>
235235
<version>3.12.0</version>
236+
<configuration>
237+
<doclint>all,-missing</doclint>
238+
</configuration>
236239
<executions>
237240
<execution>
238241
<id>attach-javadocs</id>

0 commit comments

Comments
 (0)