Last active
August 29, 2015 14:02
-
-
Save davet1985/58ab6be250082fde45f8 to your computer and use it in GitHub Desktop.
maven java version config
This file contains 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
# 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