Skip to content

Instantly share code, notes, and snippets.

@icella
Forked from ervinb/maven-333.sh
Created March 6, 2016 04:45
Show Gist options
  • Save icella/3826e8f468dfa29bfbf9 to your computer and use it in GitHub Desktop.
Save icella/3826e8f468dfa29bfbf9 to your computer and use it in GitHub Desktop.
Install Maven 3.3.3 on Ubuntu 14.04
#!/bin/sh
sudo apt-get purge -y maven
if ! [ -e .semaphore-cache/apache-maven-3.3.3-bin.tar.gz ]; then (cd .semaphore-cache; curl -OL http://mirror.olnevhost.net/pub/apache/maven/maven-3/3.3.3/binaries/apache-maven-3.3.3-bin.tar.gz); fi
sudo tar -zxf .semaphore-cache/apache-maven-3.3.3-bin.tar.gz -C /usr/local/
sudo ln -s /usr/local/apache-maven-3.3.3/bin/mvn /usr/bin/mvn
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