Last active
January 23, 2017 09:42
-
-
Save zhaopengme/584ba6ee114e79b47c7736be2d2eb0f8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get purge -y maven | |
wget http://www-eu.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz | |
tar -zxf apache-maven-3.3.9-bin.tar.gz | |
sudo cp -R apache-maven-3.3.9 /usr/local | |
sudo ln -s /usr/local/apache-maven-3.3.9/bin/mvn /usr/bin/mvn | |
echo "export M2_HOME=/usr/local/apache-maven-3.3.9" >> ~/.profile | |
source ~/.profile | |
echo "Maven is on version `mvn -v`" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment