中央仓库更新失败,IDEA报错repository is non-nexus repo, or does not indexed

中央仓库更新失败,IDEA报错repository is non-nexus repo, or does not indexed_第1张图片

某个仓库未被识别为 Nexus 仓库,或者没有被正确地索引。导致引入依赖一直爆红,找不到。只有本地仓库的依赖没报错,因为下载过了,添加新的依赖就需要到远程仓库找就爆红。

 中央仓库更新失败,IDEA报错repository is non-nexus repo, or does not indexed_第2张图片

解决 

去阿里云Maven官网看了一下,发现阿里云maven仓库地址改了,修改一下。

		
            alimaven
            aliyun maven
            http://maven.aliyun.com/nexus/content/repositories/central
            central
        
		
改为:
		
            alimaven
            aliyun maven
            https://maven.aliyun.com/repository/public
            central
        

然后发现引入的依赖还是爆红,将pom文件中爆红的依赖先注释,再一个一个打开引入,就可以了。

你可能感兴趣的:(bug解决,maven)