Last active
December 18, 2019 13:34
-
-
Save ryanpadilha/6374accb5499c9597216 to your computer and use it in GitHub Desktop.
$M2_HOME on Mac OSX
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
$ vim .profile | |
export M2_HOME=/Users/ryanpadilha/Documents/ambiente/apache-maven-3.3.9 | |
export M2=$M2_HOME/bin | |
export PATH=$M2:$PATH | |
$ source .profile | |
$ mvn -version | |
Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T14:41:47-02:00) | |
Maven home: /Users/ryanpadilha/Documents/ambiente/apache-maven-3.3.9 | |
Java version: 1.8.0_65, vendor: Oracle Corporation | |
Java home: /Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk/Contents/Home/jre | |
Default locale: pt_BR, platform encoding: UTF-8 | |
OS name: "mac os x", version: "10.11.2", arch: "x86_64", family: "mac" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment