解决maven下载依赖慢的问题

找到maven的位置,如图打开conf文件夹下面的setting.xml文件,进行配置。

解决maven下载依赖慢的问题_第1张图片

找到里面的mirrors节点,在里面添加阿里云镜像库地址。

     
           alimaven
           central
           aliyun maven
            http://maven.aliyun.com/nexus/content/repositories/central/
         



       
       
            repo1
            central
            Human Readable Name for this Mirror.
            http://repo1.maven.org/maven2/
         

       
       
           repo2
           central
            Human Readable Name for this Mirror.
           http://repo2.maven.org/maven2/

       

注意:有的版本比较高的依赖包,这个阿里的仓库也可能没有。所以要么用老的依赖,要么删掉镜像配置,继续去中央仓库下载最新的依赖。

你可能感兴趣的:(解决maven下载依赖慢的问题)