打开Terminal,添加环境变量
$ vim ~/.bash_profile
按i开始输入,添加下列两行代码,之后按esc再输入:wq保存退出
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_11.jdk/Contents/Home
export M2_HOME=/Library/apache-maven-3.3.3
export PATH=$PATH:$M2_HOME/bin
输入命令以使bash_profile生效
$ source ~/.bash_profile
网友评论