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

Maven 中央(或国内)仓库地址

时间:2015-07-27 01:59:14      阅读:934      评论:0      收藏:0      [点我收藏+]

标签:

maven官方 http://repo1.maven.org/maven2/  或 http://repo2.maven.org/maven2/ (延迟低一些)

osc 本家 http://maven.oschina.net/content/groups/public/

jboss http://repository.jboss.org/nexus/content/groups/public/

配置见:http://maven.oschina.net/help.html

pom.xml 的配置方案:

<repositories>
    <repository>
            			<id>nexus</id>
            			<name>local private nexus</name>
            			<url>http://maven.oschina.net/content/groups/public/</url>
            			<releases>
            				<enabled>true</enabled>
            			</releases>
            			<snapshots>
            				<enabled>false</enabled>
            			</snapshots>
            		</repository>
            	</repositories>
            	<pluginRepositories>
            		<pluginRepository>
            			<id>nexus</id>
            			<name>local private nexus</name>
            			<url>http://maven.oschina.net/content/groups/public/</url>
            			<releases>
            				<enabled>true</enabled>
            			</releases>
            			<snapshots>
            				<enabled>false</enabled>
            			</snapshots>
            		</pluginRepository>
            	</pluginRepositories>


Maven 中央(或国内)仓库地址

标签:

原文地址:http://my.oschina.net/cokolin/blog/483989

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