mvn-install: add page (#18528)

This commit is contained in:
Sahil Afrid Farookhi
2025-10-09 13:51:49 -05:00
committed by GitHub
parent 92c612fd22
commit e8bffd61c5
+20
View File
@@ -0,0 +1,20 @@
# mvn install
> Install third-party Maven dependencies and build the project.
> More information: <https://manned.org/mvn>.
- Compile, test, package, and install the project into the local repository:
`mvn install`
- Skip tests during installation:
`mvn install {{[-D|--define]}} skipTests`
- Force update of dependencies before installing:
`mvn install {{[-U|--update-snapshots]}}`
- Skip test compilation and execution:
`mvn install {{[-D|--define]}} maven.test.skip=true`