Maven 中阿里云镜像替代中央仓库

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/weixin_39709686/article/details/78474559

前言

maven仓库默认在国外,使用难免很慢,尤其是下载依赖的时候,换为国内阿里云镜像,让你感受飞一般的感觉。国内支持maven镜像的有阿里云,开源中国等,这里换为阿里云的。

更换

修改maven配置文件settings.xml (一般在这里整一下即可)(当然也可以在用户home目录.m2下面添加一个settings.xml文件)

下面修改位置:

<mirror>
    <id>nexus-aliyun</id>
    <mirrorOf>*</mirrorOf>
    <name>Nexus aliyun</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
修改例子:

结束语,很快的

猜你喜欢

转载自blog.csdn.net/weixin_39709686/article/details/78474559