Skip to content

Instantly share code, notes, and snippets.

@zhaopengme
Last active January 23, 2017 09:42
Show Gist options
  • Save zhaopengme/584ba6ee114e79b47c7736be2d2eb0f8 to your computer and use it in GitHub Desktop.
Save zhaopengme/584ba6ee114e79b47c7736be2d2eb0f8 to your computer and use it in GitHub Desktop.
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