maven配置阿里云仓库镜像

全局配置

修改settting文件
在mirrors标签下添加子节点。

    <mirror>
          <id>nexus-aliyun</id>
          <mirrorOf>central</mirrorOf>
          <name>Nexus aliyun</name>
          <url>http://maven.aliyun.com/nexus/content/groups/public</url>
      </mirror>

< mirrorOf>可以设置为指定中央仓库做镜像。

< mirrorOf>central< /mirrorOf> 为名为“central”的中央仓库做镜像; < mirrorOf>*< /mirrorOf> 为所有中央仓库做镜像。

Maven默认中央仓库的id 为 central。id是唯一的。

单项目配置,修改pom文件

      <repositories>
          <repository>
              <id>central</id>
              <name>aliyun maven</name>
              <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
              <layout>default</layout>
              <!-- 是否开启发布版构件下载 -->
              <releases>
                  <enabled>true</enabled>
              </releases>
              <!-- 是否开启快照版构件下载 -->
              <snapshots>
                  <enabled>false</enabled>
              </snapshots>
          </repository>
      </repositories>

原文地址:https://www.cnblogs.com/jichi/p/11621412.html

时间: 2024-10-28 12:07:52

maven配置阿里云仓库镜像的相关文章

maven配置阿里云仓库

在mirrors的节点中添加: <mirror> <!--This sends everything else to /public --> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public<

maven 配置阿里云仓库

<mirror>     <id>nexus-aliyun</id>     <mirrorOf>*</mirrorOf>     <name>Nexus aliyun</name>     <url>http://maven.aliyun.com/nexus/content/groups/public</url></mirror> 原文地址:https://www.cnblogs.co

maven入门(11)配置阿里云的镜像仓库

每次update Maven Project 的时候,看着进度条寸步难行,心里憋得十分难受,明显阻碍我学习的热情. 今天看到阿里云搭建了一个国内镜像 http://maven.aliyun.com/,听说跑起来的速度不是一般的快,于是决定亲自试一试,简直不能更赞!好了废话不多说,奉上我的 settings.xml 配置文件供大家参考. 添加的东东很少,只需在mirrors节点里面加上一个mirror子节点,内容如下: <mirror> <!--This sends everything

IDEA配置maven(配置阿里云中央仓库)

前言 idea配置maven后如果不修改中央仓库地址创建maven则出奇的慢,不管你用MyEclipse还是idea都慢的不要不要的,实在不能忍受. 这种条件下发现一个阿里云中央仓库来点福利,有福利了就必须给阿里云点个赞. 配置Maven 下载maven,我用的版本是3.3.9. 配置环境变量.设置Repository. 这时你创建maven项目时settings.xml默认是用/User/.m2/settings.xml. 打开maven/conf/settings.xml, 找到mirror

maven,阿里云国内镜像,提高jar包下载速度

镜像 maven默认会从中央仓库下载jar包,这个仓库在国外,而且全世界的人都会从这里下载,所以下载速度肯定是非常慢的.镜像就相当于是中央仓库的一个副本,内容和中央仓库完全一样,目前有不少国内镜像,其中阿里云算是比较稳定的,同时也能保证下载速度 配置方法 在settings.xml 中配置,所有项目都会生效 [html] view plain copy <mirrors> <mirror> <id>alimaven</id> <name>aliy

maven配置阿里云国内仓库

<mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> <mirrorOf>central</mirrorOf> </mirror> ===================== http://maven.aliyu

zbb20181006 maven配置阿里云中央仓库

首先查看下maven安装位置下的/conf/settings.xml的路径,如下图我这里是D:\Java\apache-maven-3.3.9\conf\settings.xml 然后根据路径找到配置文件在mirrors标签加入如下内容: 1 2 3 4 5 6 <mirror>       <id>alimaven</id>       <name>aliyun maven</name>       <url>http://mave

maven 配置阿里云镜像 settings.xml内容

<mirrors> <mirror> <id>alimaven</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors> 原文地址:h

Maven配置阿里云镜像

<mirrors> <mirror> <id>nexus-aliyun</id> <mirrorOf>*,!jeecg,!jeecg-snapshots</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </mirror> &l