Generate Javadoc HTML using maven?
Using the same plugin, you can generate javadoc in a folder using
mvn javadoc:javadoc
It puts the help content under target/site/apidocs
You can change the output folder by using the plugin configuration parameter reportOutputDirectory
Please refer to:
- Apache Maven Javadoc Plugin
if you are interested in just doing it raw, you could use the following command.
javadoc -d C:/javadoc/test com.mypackage