Last active
August 29, 2015 14:10
-
-
Save iluwatar/9aa6eeb7066b3ca658e8 to your computer and use it in GitHub Desktop.
With Maven and Java environment variables
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
#MAVEN | |
M2_HOME=/opt/apache-maven-3.2.3 | |
export M2_HOME | |
M2=$M2_HOME/bin | |
export M2 | |
PATH=$M2:$PATH | |
export PATH | |
# JAVA | |
JAVA_HOME=/opt/java/64/jdk1.8.0_25 | |
export JAVA_HOME | |
JAVA_BIN=$JAVA_HOME/bin | |
export JAVA_BIN | |
PATH=$JAVA_BIN:$PATH | |
export PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment