InterviewSolution
Saved Bookmarks
| 1. |
How to generate javadocs in Maven? |
|
Answer» The MAVEN-javadoc PLUGIN is used by Maven to generate a project's JAVADOCS. To create javadocs, this plugin internally USES the JDK\bin\javadoce.exe command. The javadocs for the project are GENERATED when the project is deployed with the mvn install command. |
|