Mac中maven配置安装路径
没有下载maven的可以先下载:(这里建议maven版本不要下高了)
如果你的bash_profile中没有配置JAVA_HOME路径,可以按照下面的命令配置一下
获取JAVA的安装路径:
/usr/libexec/java_home -V
注:如果你的电脑中安装了多个jdk,请一定要注意jdk和项目中用到的要一致
添加MAVEN_HOME到profile
mac下编辑profile:
vi ~/.bash_profile
添加环境变量
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home
export CLASSPATH=.:/lib/dt.jar:/lib/tools.jar
export MAVEN_HOME=/Users/zwt/Downloads/yinan/apache-maven-3.5.4/bin
export PATH=PATH:MAVEN_HOME
保存并生效
source ~/.bash_profile
配置.zshrc
如果你使用的是zsh,则需要配置变量到~/.zshrc中。
记得source一次配置文件,然后再去idea中编译,如果还是报错,试试在控制台中也source一遍配置文件,最后记一次报错:
this failure was cached in the local repository............
错误详细忘了截图,但是如果你的maven版本是3.8.1以上,可以试试降低一下maven版本