Created
March 14, 2014 17:14
-
-
Save semperos/9552289 to your computer and use it in GitHub Desktop.
Java6 and Java7 on Mac OSX 10.8.5
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
| ############## | |
| # Java Setup # | |
| ############## | |
| # VERSIONS # | |
| # Apple-supported JDK 6 | |
| export JAVA_6_HOME=$(/usr/libexec/java_home -v 1.6) | |
| # Oracle JDK 7 | |
| export JAVA_7_HOME=$(/usr/libexec/java_home -v 1.7) | |
| #default JDK is 6 | |
| export JAVA_HOME=$JAVA_6_HOME | |
| # SWITCHING # | |
| alias java6="export JAVA_HOME=$JAVA_6_HOME" | |
| alias java7="export JAVA_HOME=$JAVA_7_HOME" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment