Skip to content

Instantly share code, notes, and snippets.

@mingliangfeng
Forked from stephanetimmermans/ubuntu-maven-3
Last active August 29, 2015 14:28
Show Gist options
  • Save mingliangfeng/c688f61f728c25ad8c2d to your computer and use it in GitHub Desktop.
Save mingliangfeng/c688f61f728c25ad8c2d to your computer and use it in GitHub Desktop.
Install Maven3 on Unbuntu 14.04
#sudo apt-get remove maven2
sudo add-apt-repository "deb http://ppa.launchpad.net/natecarlson/maven3/ubuntu precise main"
sudo apt-get update
sudo apt-get install maven3
#If you encounter this:
#The program 'mvn' can be found in the following packages:
# * maven
# * maven2
#Try sudo apt-get install <selected-page>
#Just add those lines in /etc/profile
export M2_HOME=/usr/share/maven3
export M2=$M2_HOME/bin
export PATH=$M2:$PATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment