今天拉了个新项目

但是依赖包一直更新不下来,reimport几次了都不行

检查m2的配置文件,使用的是阿里云的镜像没问题。

 

最后懒得排查了,直接在项目pom中单独加入阿里云镜像算了

idea中maven依赖包下载不下来

<!-- 不知道为什么在maven的settings.xml中配置没有生效,因此手动使用aliyun镜像 -->
<repositories>
    <repository>
        <id>aliyun</id>
        <name>aliyun</name>
        <url>http://maven.aliyun.com/nexus/content/groups/public</url>
    </repository>
</repositories>

 

 

 

 

相关文章:

  • 2022-12-23
  • 2021-11-18
  • 2021-07-29
  • 2021-04-29
  • 2021-06-20
  • 2021-12-11
  • 2022-12-23
  • 2021-09-09
猜你喜欢
  • 2021-11-07
  • 2021-09-22
  • 2022-12-23
  • 2021-09-04
  • 2022-12-23
  • 2021-12-29
相关资源
相似解决方案