Maven:修改repository:修订间差异

来自WHY42
imported>Soleverlee
以“~/.m2/settings.xml: <source lang="xml"> <mirror> <id>nexus-riguz</id> <mirrorOf>central</mirrorOf> <name>riguz nexus</name> <url>http://ssh.riguz.com:8081/ne...”为内容创建页面
 
imported>Soleverlee
无编辑摘要
 
第22行: 第22行:
</source>
</source>
注:ssh.riguz.com:8081是本人的nexus服务器,不经常开,请勿效仿!
注:ssh.riguz.com:8081是本人的nexus服务器,不经常开,请勿效仿!
=Maven搜索地址=
*http://search.maven.org/
*http://mvnrepository.com/
[[Category:Programe]]
[[Category:Programe]]

2016年11月24日 (四) 01:21的最新版本

~/.m2/settings.xml:

<mirror> 
	<id>nexus-riguz</id> 
	<mirrorOf>central</mirrorOf> 
	<name>riguz nexus</name> 
	<url>http://ssh.riguz.com:8081/nexus/content/repositories/Central-1/</url> 
</mirror>

pom.xml

<repositories>
	<repository>
		<id>riguz</id>
		<mirrorOf>central</mirrorOf>
		<name>riguz</name>
		<url>http://ssh.riguz.com:8081/nexus/content/repositories/Central-1/</url>
	</repository>
</repositories>

注:ssh.riguz.com:8081是本人的nexus服务器,不经常开,请勿效仿!

Maven搜索地址