IDEA中的maven项目的依赖包下载太慢的解决方法

用自己本地的maven仓库碰到没有下过的依赖包下载实在是太慢了,慢到哭泣。一般碰到pom文件中飘红绝大原因是依赖下不下来。后来百度到解决方法:

1、右键项目选中maven选项,然后选择“open settings.xml”没有的话就create

2.粘贴代码



    
        
 
        
            alimaven
            aliyun maven
            http://maven.aliyun.com/nexus/content/groups/public/
            central
        
 
        
            uk
            central
            Human Readable Name for this Mirror.
            http://uk.maven.org/maven2/
        
 
        
            CN
            OSChina Central
            http://maven.oschina.net/content/groups/public/
            central
        
 
        
            nexus
            internal nexus repository
            
            http://repo.maven.apache.org/maven2
            central
        
 
    

 

你可能感兴趣的:(个人经验)