今天用IDEA maven导入github上一个项目的包,报了无法解析该依赖的错误

查看 File | Settings | Build, Execution, Deployment | Build Tools | Maven | Repositories 发现(remote updated error)无法更新远程库,报错信息是IntelliJ Maven error: Repository is non-nexus repo, or is not indexed

在互联网上找了很久的解决方案,最后看到一个博客 Maven 配置遇到的问题Remote Update Error发现原因是我的maven配置了阿里巴巴的镜像源,解决办法如下:

  • 将maven文件中conf/settings.xml中的镜像配置注释掉
  • reload maven,然后等待几分钟
  • 问题解决,回到settings.xml中取消注释

参考博客: