码迷,mamicode.com
首页 > 其他好文 > 详细

maven 远程仓库

时间:2015-07-19 23:17:42      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

eclipse的 preferences -> maven -> User Settings  你就可以看到你的setting.xml文件的地址了。
 然后将setting.xml文件打开。修改里面的mirror节点 。url指向远程仓库的地址。 这样设置之后你的所有项目都有作用。
 <mirror>  
         <id>central_mirror</id>  
         <name>internal central_mirror epository</name>  
         <url>http://repo1.maven.org/maven2/</url> 
         <mirrorOf>central</mirrorOf>    
 </mirror>
 

如果不修改setting.xml ,也可以在你项目的pom.xml上加入 

[html] view plaincopy技术分享技术分享
 
  1.   <repositories>  
  2.     <repository>    
  3.        <id>oschinaRepository</id>    
  4.        <name>local private nexus</name>    
  5.        <url>http://maven.oschina.net/content/groups/public/</url>    
  6.        <releases>    
  7.            <enabled>true</enabled>    
  8.        </releases>    
  9.         <snapshots>    
  10.             <enabled>true</enabled>    
  11.         </snapshots>    
  12.     </repository>    
  13. </repositories>  


常见仓库

共有的仓库
http://repo1.maven.org/maven2/
http://repository.jboss.com/maven2/
http://repository.sonatype.org/content/groups/public/
http://mirrors.ibiblio.org/pub/mirrors/maven2/org/acegisecurity/

http://maven.glassfish.org/content/groups/glassfish/

https://nexus.sourcesense.com/nexus/content/repositories/public/

私有的仓库
http://repository.codehaus.org/
http://snapshots.repository.codehaus.org/
http://people.apache.org/repo/m2-snapshot-repository
http://people.apache.org/repo/m2-incubating-repository/

 

 

 对当前的项目有效。

maven 远程仓库

标签:

原文地址:http://www.cnblogs.com/Crow00/p/4659867.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!