Skip to content

Instantly share code, notes, and snippets.

@semperos
Created March 14, 2014 17:14
Show Gist options
  • Select an option

  • Save semperos/9552289 to your computer and use it in GitHub Desktop.

Select an option

Save semperos/9552289 to your computer and use it in GitHub Desktop.
Java6 and Java7 on Mac OSX 10.8.5
##############
# 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