IDEA出现Failed to read artifact descriptor forXXX:jar:unknow解决办法
今天IDEA出现,Failed to read artifact descriptor for org.springframework.cloud:spring‐cloud‐starter‐config:jar:unknown ,
尝试了以下常用解决方法:
- 重新Reimport All Maven Projects。
- 删除Maven依赖,再重新导入。
- 重启IDEA,并清除缓存。
- 删除仓库的包,重新下载。
以上方法均以失败告终,最后,怀疑是Maven远程仓库那边的问题,我原来的用的是阿里云的仓库
http://maven.aliyun.com/nexus/content/groups/public/,
于是,我把仓库的地址换为官方仓库,http://repo1.maven.org/maven2/, 依然不行,于是,我重启IDEA清理缓存,update了maven仓库,依然不行!一般到这个时候就没问题了,心态炸了。
一直在思考这是哪里的问题,因为我用的是spring-cloud,所以我在maven后面添加
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
然后,项目开始下载依赖,成功了,异常解除