博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
阿里云Maven配置,Maven仓库配置,Maven镜像配置
阅读量:5785 次
发布时间:2019-06-18

本文共 1381 字,大约阅读时间需要 4 分钟。

 

阿里云Maven配置,Maven仓库配置,Maven镜像配置

========================

蕃薯耀 2018年1月29日

http://www.cnblogs.com/fanshuyao/

 

一、setting.xml文件配置镜像

找到mirrors镜像节点,增加mirror节点,如下所示:

Xml代码  
  1. <mirrors>  
  2.     <!-- mirror  
  3.      | Specifies a repository mirror site to use instead of a given repository. The repository that  
  4.      | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used  
  5.      | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.  
  6.      |  
  7.     <mirror>  
  8.       <id>mirrorId</id>  
  9.       <mirrorOf>repositoryId</mirrorOf>  
  10.       <name>Human Readable Name for this Mirror.</name>  
  11.       <url>http://my.repository.com/repo/path</url>  
  12.     </mirror>  
  13.      -->  
  14.      <mirror>  
  15.       <id>alimaven</id>  
  16.       <mirrorOf>central</mirrorOf>  
  17.       <name>aliyun maven</name>  
  18.       <url>http://maven.aliyun.com/nexus/content/groups/public/</url>  
  19.     </mirror>  
  20.   </mirrors>  

 

 

二、本地Jar包仓库配置

在setting.xml文件中找点localRepository节点,具体配置如下:

路径自己定义

Xml代码  
  1. <!-- localRepository  
  2.  | The path to the local repository maven will use to store artifacts.  
  3.  |  
  4.  | Default: ${user.home}/.m2/repository  
  5. <localRepository>/path/to/local/repo</localRepository>  
  6. -->  
  7. <localRepository>D:\0soft\repository</localRepository>  

 

 

 

三、pom.xml文件仓库配置

 

Xml代码  
  1. <repositories>    
  2.         <repository>    
  3.             <id>alimaven</id>    
  4.             <name>aliyun maven</name>    
  5.             <url>http://maven.aliyun.com/nexus/content/groups/public/</url>    
  6.         </repository>  
  7.     </repositories>  

 

 

 

========================

蕃薯耀 2018年1月29日

http://www.cnblogs.com/fanshuyao/

你可能感兴趣的文章
Java判断是否为垃圾_Java GC如何判断对象是否为垃圾
查看>>
多项式前k项和java_多项式朴素贝叶斯softmax改变
查看>>
使用@media实现IE hack的方法
查看>>
oracle体系结构
查看>>
使用CocoaPods过程中的几个问题
查看>>
XP 安装ORACLE
查看>>
八、 vSphere 6.7 U1(八):分布式交换机配置(vMotion迁移网段)
查看>>
我的友情链接
查看>>
JS中比较数字大小
查看>>
jQuery插件的开发
查看>>
基础,基础,还是基础之JAVA基础
查看>>
haproxy mysql实例配置
查看>>
JS prototype 属性
查看>>
HTTP库Axios
查看>>
gen already exists but is not a source folder. Convert to a source folder or rename it 的解决办法...
查看>>
20个Linux服务器性能调优技巧
查看>>
填坑记:Uncaught RangeError: Maximum call stack size exceeded
查看>>
SpringCloud之消息总线(Spring Cloud Bus)(八)
查看>>
实时编辑
查看>>
KVO原理分析及使用进阶
查看>>