...
Code Block |
---|
wget http://www.apache.org/dist//maven/binaries/apache-maven-3.0.3-bin.tar.gz |
Wiki Markup |
Step 2. Extract the Distribution Archive
...
Code Block |
---|
gunzip -c apache-maven-3.0.3-bin.tar.gz |tar xvf - |
Wiki Markup |
Step 3. Set Environmental Variables
...
Code Block |
---|
export M2_HOME=/opt/apache-maven-3.0.3 export PATH=${M2_HOME}/bin:${PATH} |
Wiki Markup |
Step 4. Check Installation
After installation check the version by command:
Code Block |
---|
mvn -version |
Wiki Markup |
The system displays information on the Apache Maven version installed.
...