Skip to content

Instantly share code, notes, and snippets.

@davet1985
Last active August 29, 2015 14:02
Show Gist options
  • Save davet1985/58ab6be250082fde45f8 to your computer and use it in GitHub Desktop.
Save davet1985/58ab6be250082fde45f8 to your computer and use it in GitHub Desktop.
maven java version config
# check Maven java version
mvn -version
# echo the java 1.7 location
echo $(/usr/libexec/java_home -v 1.7) #/Library/Java/JavaVirtualMachines/jdk1.7.0_51.jdk/Contents/Home
# add JAVA_HOME to .mavenrc file
# WARNING: THIS WILL OVERWRITE YOUR .mavenrc file
echo export JAVA_HOME=$(/usr/libexec/java_home -v 1.7) > ~/.mavenrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment