IDEA maven 阿里云镜像 下载jar失败

我在使用IDEA搭建SpringCloud项目的时候,发现很多spring cloud 包总是下载不了。maven配置了阿里云镜像。在换了一下新版的镜像地址以后就可以下包了。

官方答疑:新版maven.aliyun.com答疑-云栖社区-阿里云 

使用阿里云旧版maven仓库

<mirror>  
    <id>nexus-aliyun</id>  
    <mirrorOf>central</mirrorOf>    
    <name>Nexus aliyun</name>  
    <url>http://maven.aliyun.com/nexus/content/groups/public</url>  
</mirror> 

使用阿里云新版maven仓库

<mirror>  
    <id>nexus-aliyun</id>  
    <mirrorOf>central</mirrorOf>    
    <name>Nexus aliyun</name>  
    <url>https://maven.aliyun.com/repository/public</url>  
</mirror> 

 

posted @ 2019-01-10 13:19  Always_July  阅读(7769)  评论(0编辑  收藏  举报