Last active
June 27, 2016 23:24
-
-
Save dclucas/4cdfbe963b1721e74449 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 remove maven* | |
wget http://apache.arvixe.com/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.tar.gz | |
tar -zxf apache-maven-3.2.3-bin.tar.gz | |
sudo cp -R apache-maven-3.2.3 /usr/local | |
sudo ln -s /usr/local/apache-maven-3.2.3/bin/mvn /usr/bin/mvn | |
mvn –version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There's a mismatch between mvn 3.2.5 and 3.2.3. You'll need to change make sure that you use the same version on each line.