mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 11:25:16 +08:00
7699da3ce5
* replace more info url with manned * replace manned url with maven site usage url
586 B
586 B
mvn site
Generate a project website based on the information in the
pom.xmlfile. More information: https://maven.apache.org/plugins/maven-site-plugin/usage.html.
- Generate a project site using the site plugin:
mvn site
- Generate a site for a specific Maven project (multi-module build):
mvn site {{[-pl|--projects]}} {{module_name}}
- Clean previous site output before generating a new one:
mvn clean site
- Skip tests while generating the site:
mvn site {{[-D|--define]}} skipTests
- Generate and deploy the site to the remote server:
mvn site-deploy