Created
July 11, 2014 08:46
-
-
Save sasajib/e13bcfd579bfdae674ab to your computer and use it in GitHub Desktop.
Maven in Ubuntu
This file contains hidden or 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
| #!/bin/bash | |
| cd /usr/local/src | |
| mkdir maven | |
| cd maven | |
| wget http://mirrors.ispros.com.bd/apache/maven/maven-3/3.2.2/binaries/apache-maven-3.2.2-bin.tar.gz | |
| tar -zxf apache-maven-3.2.2-bin.tar.gz | |
| cd ~ | |
| ln -s /usr/local/src/maven/apache-maven-3.2.2/bin/mvn /usr/local/bin/mvn | |
| #to check version | |
| #mvn -v |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment