maven install command code example

Example 1: how to install maven

Download from https://maven.apache.org/download.cgi
Extract the zip/tar to desired location 
Ensure JAVA_HOME variable is correctly configured to a JDK
For Windows-
Go to MyComputer -> properties -> Advanced System Settings -> Environment variables -> click new button
Add 'MAVEN_HOME' to the directory where Maven is extracted. Eg- "C:\apache-maven-3.8.1"
Edit the path variable and add MAVEN_HOME\bin to it. Use this as it is- "%MAVEN_HOME%\bin" (without quotes)
Save the changes
Check the installation by running the command "mvn -version" in CMD.

Example 2: maven commands

mvn --version			
Prints out the version of Maven you are running.

mvn clean				
Clears the target directory into which Maven normally builds your project.

mvn package				
Builds the project and packages the resulting JAR file into the target directory

mvn package -Dmaven.test.skip=true	
Builds the project and packages the resulting JAR file into the target directory 
- without running the unit tests during the build.

mvn clean package	
Clears the target directory and Builds the project and packages the 
resulting JAR file into the target directory.

mvn clean package -Dmaven.test.skip=true	
Clears the target directory and builds the project and packages the 
resulting JAR file into the target directory - without running the unit 
tests during the build.

mvn verify	
Runs all integration tests found in the project.

mvn clean verify	
Cleans the target directory, and runs all integration tests found 
in the project.

mvn install	
Builds the project described by your Maven POM file and installs the 
resulting artifact (JAR) into your local Maven repository

mvn install -Dmaven.test.skip=true	
Builds the project described by your Maven POM file without 
running unit tests, and installs the resulting artifact (JAR) into 
your local Maven repository

mvn clean install	
Clears the target directory and builds the project described 
by your Maven POM file and installs the resulting artifact (JAR) 
into your local Maven repository

mvn clean install -Dmaven.test.skip=true	
Clears the target directory and builds the project described 
by your Maven POM file without running unit tests, and installs 
the resulting artifact (JAR) into your local Maven repository

mvn dependency:tree	Prints out the dependency tree for your project 
- based on the dependencies configured in the pom.xml file.

mvn dependency:tree -Dverbose	Prints out the dependency 
tree for your project - based on the dependencies configured 
in the pom.xml file. Includes repeated, transitive dependencies.

mvn dependency:tree -Dincludes=com.fasterxml.jackson.core	
Prints out the dependencies from your project which depend on the 
com.fasterxml.jackson.core artifact.

mvn dependency:tree -Dverbose -Dincludes=com.fasterxml.jackson.core	
Prints out the dependencies from your project which depend on the 
com.fasterxml.jackson.core artifact. Includes repeated, transitive dependencies.

mvn dependency:build-classpath	
Prints out the classpath needed to run your project (application) 
based on the dependencies configured in the pom.xml file.

Example 3: install maven on windows

Downloading Apache Maven  from https://maven.apache.org/download.cgi

Tags: