Skip to content

Instantly share code, notes, and snippets.

@davidmoten
Last active August 29, 2015 14:07
Show Gist options
  • Save davidmoten/2770617cee2304d4a0c5 to your computer and use it in GitHub Desktop.
Save davidmoten/2770617cee2304d4a0c5 to your computer and use it in GitHub Desktop.
cloud9 maven setup script
sudo add-apt-repository -y ppa:webupd8team/java
sudo add-apt-repository -y "deb http://ppa.launchpad.net/natecarlson/maven3/ubuntu precise main"
sudo apt-get update
sudo apt-get install maven3 --force-yes
cd
echo >>.bashrc
echo export PATH=/usr/share/maven3/bin/mvn:$PATH >>.bashrc
echo alias i=\'mvn clean install\' >>.bashrc
source .bashrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment