Insert the plug-in description in pom-javadoc.xml into the project's pom.xml. One can update the version based on information on the plugin's site and adjust the source/targets for the desired Java version.
Created
July 16, 2021 20:27
-
-
Save dgreen/d77b083dc9decb0dbe5637ca796d965c to your computer and use it in GitHub Desktop.
pom addition to generate JavaDoc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-javadoc-plugin</artifactId> | |
<version>3.3.0</version> | |
<configuration> | |
<source>15</source> | |
<target>15</target> | |
<sourceFileExcludes>**/module-info.java</sourceFileExcludes> | |
</configuration> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment