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://maven.aliyun.com/nexus/content/groups/public/</url>

      <mirrorOf>central</mirrorOf>       

</mirror>

具体效果图如下:

原文地址:https://www.cnblogs.com/super-admin/p/9746703.html

时间: 2024-11-05 11:17:02

zbb20181006 maven配置阿里云中央仓库的相关文章

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配置阿里云国内仓库

<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

maven阿里云中央仓库

该死的 oschina的库,我还以为还活着呢. 因为网上检索出来的, 都是oschina的例子. 后来才发觉竟然是死的,我其实一直在用 jcenter. 于是找到下面的文章,估计好用.还没试. http://blog.csdn.net/u010717403/article/details/52188496 maven阿里云中央仓库maven作为一个项目管理工具确实非常好用,但是在国内这个网络条件下实在是让人恼火.之前oschina的中央仓库可用,现在oschina的maven服务器关了,一直没找

Maven镜像更换为阿里云中央仓库(精)

前言 maven仓库默认在国外,使用难免很慢,尤其是下载依赖的时候,换为国内镜像,让你感受飞一般的感觉.国内支持maven镜像的有阿里云,开源中国等,这里换为阿里云的. 更换 修改maven配置文件settings.xml (当然也可以在用户home目录.m2下面添加一个settings.xml文件) 目录:/root/.m2/settings.xml $ cd $M2_HOME/conf/ $ sudo vim settings.xml 在中加入 <mirror> <id>nex

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>

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

阿里云 中央仓库地址

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

Maven配置阿里云镜像仓库

配置文件:D:\MyDev\Maven\apache-maven-3.0.5\conf\settings.xml <mirrors> <mirror> <id>alimaven</id> <mirrorOf>central</mirrorOf> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/pu