From e8bffd61c5bacbe72195020ae891466fa4abbe8b Mon Sep 17 00:00:00 2001 From: Sahil Afrid Farookhi Date: Thu, 9 Oct 2025 13:51:49 -0500 Subject: [PATCH] mvn-install: add page (#18528) --- pages/common/mvn-install.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/mvn-install.md diff --git a/pages/common/mvn-install.md b/pages/common/mvn-install.md new file mode 100644 index 0000000000..9000b715cd --- /dev/null +++ b/pages/common/mvn-install.md @@ -0,0 +1,20 @@ +# mvn install + +> Install third-party Maven dependencies and build the project. +> More information: . + +- 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`