mavenmaven中央仓库改为阿里云的仓库,增快下载速度。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mavenmaven中央仓库改为阿里云的仓库,增快下载速度。相关的知识,希望对你有一定的参考价值。
配置方法1: 在我们的 $MAVEN_HOME/conf 下的 settings.xml 的标签中添加如下配置:
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
配置方法2: 直接在我们的maven项目中的 pom.xml 中直接添加
<repositories><!-- 代码库 -->
<repository>
<id>maven-ali</id>
<url>http://maven.aliyun.com/nexus/content/groups/public//</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
</repository>
</repositories>
以上是关于mavenmaven中央仓库改为阿里云的仓库,增快下载速度。的主要内容,如果未能解决你的问题,请参考以下文章