Created
August 8, 2014 15:53
-
-
Save sebsto/19b99f1fa1f32cae5d00 to your computer and use it in GitHub Desktop.
Install Maven with Yum on Amazon Linux
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 wget http://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-maven.repo -O /etc/yum.repos.d/epel-apache-maven.repo | |
sudo sed -i s/\$releasever/6/g /etc/yum.repos.d/epel-apache-maven.repo | |
sudo yum install -y apache-maven | |
mvn --version |
thanks a lot 👍
This worked great but set maven (and my default java) to use Java 1.7. If you want to use Java 1.8, follow the above gist and then do:
yum search java | grep openjdk yum install java-1.8.<revision number from yum search>-openjdk-headless.x86_64 yum install java-1.8.<revision number from yum search>-openjdk-devel.x86_64 update-alternatives --config java #pick java 1.8 update-alternatives --config javac #pick java 1.8
Thank you so much!
Thanks!!
You saved me a ton of time, thanks!
Thanks
Thanks
Thanks!!!!!!! Works great.
This worked, thanks so much, you are legend!
how we can update maven version on amazon ec2
thanks a lot
thanks a lot
;-)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
perfect thank you so much