Skip to content

Commit

Permalink
Enhance maven-javadoc-plugin config for project jigsaw
Browse files Browse the repository at this point in the history
  • Loading branch information
spannm committed Feb 18, 2024
1 parent b750238 commit 9838500
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,25 @@
</configuration>
</plugin>

<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${dep.plugin.javadoc.version}</version>
<configuration>
<useStandardDocletOptions>true</useStandardDocletOptions>
<nocomment>false</nocomment>
<detectJavaApiLink>false</detectJavaApiLink>
<detectLinks>false</detectLinks>
<doclint>all,-missing</doclint>
<!-- add all modules of module-path so javadoc generation will
not fail on modularized projects (includes use of automatic module names) -->
<additionalOptions>
<option>--add-modules</option>
<option>ALL-MODULE-PATH</option>
<option>-Xmaxwarns 500</option>
</additionalOptions>
</configuration>
</plugin>

</plugins>

</pluginManagement>
Expand Down

0 comments on commit 9838500

Please sign in to comment.