Skip to content

Instantly share code, notes, and snippets.

@ainoya
Created October 5, 2014 07:32
Show Gist options
  • Save ainoya/131c903708d59a05d729 to your computer and use it in GitHub Desktop.
Save ainoya/131c903708d59a05d729 to your computer and use it in GitHub Desktop.
install maven
cd /tmp
wget http://ftp.tsukuba.wide.ad.jp/software/apache/maven/maven-3/3.2.3/binaries/apache-maven-3.2.3-bin.tar.gz
tar -xzf apache-maven-3.2.3-bin.tar.gz -C /opt/
cat << EOF > /etc/profile.d/maven.sh
export M3_HOME=/opt/apache-maven-3.2.3
export M3=\$M3_HOME/bin
export PATH=\$M3:$PATH
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment