Maven – Installing Apache Maven
The installation of Apache Maven is a simple process of extracting the archive and adding the bin folder with the mvn command to the PATH.
Detailed steps are:
- Have a JDK installation on your system. Either set the
JAVA_HOMEenvironment variable pointing to your JDK installation or have thejavaexecutable on yourPATH. - Extract distribution archive in any directory
unzip apache-maven-3.8.5-bin.zip
or
tar xzvf apache-maven-3.8.5-bin.tar.gz
Alternatively use your preferred archive extraction tool.
- Add the
bindirectory of the created directoryapache-maven-3.8.5to thePATHenvironment variable - Confirm with
mvn -vin a new shell. The result should look similar to
Apache Maven 3.8.5 (3599d3414f046de2324203b78ddcf9b5e4388aa0)Maven home: /opt/apache-maven-3.8.5Java version: 1.8.0_45, vendor: Oracle CorporationJava home: /Library/Java/JavaVirtualMachines/jdk1.8.0_45.jdk/Contents/Home/jreDefault locale: en_US, platform encoding: UTF-8OS name: "mac os x", version: "10.8.5", arch: "x86_64", family: "mac"
Windows Tips
- Check environment variable value e.g.
echo %JAVA_HOME%C:\Program Files\Java\jdk1.7.0_51
- Adding to
PATH: Add the unpacked distribution’s bin directory to your user PATH environment variable by opening up the system properties (WinKey + Pause), selecting the “Advanced” tab, and the “Environment Variables” button, then adding or selecting the PATH variable in the user variables with the valueC:\Program Files\apache-maven-3.8.5\bin. The same dialog can be used to setJAVA_HOMEto the location of your JDK, e.g.C:\Program Files\Java\jdk1.7.0_51 - Open a new command prompt (Winkey + R then type
cmd) and runmvn -vto verify the installation.
Unix-based Operating System (Linux, Solaris and Mac OS X) Tips
- Check environment variable value
echo $JAVA_HOME/Library/Java/JavaVirtualMachines/jdk1.8.0_45.jdk/Contents/Home
- Adding to
PATH
export PATH=/opt/apache-maven-3.8.5/bin:$PATH
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/262640.html