maven仓库修改为阿里云仓库

 

 

将XML文件中的<mirrors>节点修改为(阿里云的仓库):

<mirrors>  <!-- 阿里云仓库 -->  <mirror>    <id>alimaven</id>    <mirrorOf>central</mirrorOf>    <name>aliyun maven</name>    <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>  </mirror>  <!-- 中央仓库1 -->  <mirror>    <id>repo1</id>    <mirrorOf>central</mirrorOf>    <name>Human Readable Name for this Mirror.</name>    <url>http://repo1.maven.org/maven2/</url>  </mirror>  <!-- 中央仓库2 -->  <mirror>    <id>repo2</id>    <mirrorOf>central</mirrorOf>    <name>Human Readable Name for this Mirror.</name>    <url>http://repo2.maven.org/maven2/</url>  </mirror></mirrors>

 

将下载的文件保存在指定地方。此时需要修改settings.xml的<localRepository>节点,如图所示:

 

posted @ 2020-11-03 08:50  _Lawrence  阅读(1597)  评论(0编辑  收藏  举报