1. 程式人生 > 其它 >Maven的映象檔案配置

Maven的映象檔案配置

<!--

  setting.xml中映象檔案配置

  2021-07-3014:30:29

-->

1 <mirrors> 2 <mirror> 3 <id>alimaven</id> 4 <mirrorOf>central</mirrorOf> 5 <name>aliyun maven</name> 6 <url>http://maven.aliyun.com/nexus/content/repositories/central/</

url> 7 </mirror> 8 <mirror> 9 <id>alimaven</id> 10 <name>aliyun maven</name> 11 <url>http://maven.aliyun.com/nexus/content/groups/public/</url> 12 <mirrorOf>central</mirrorOf> 13 </mirror> 14 <
mirror> 15 <id>central</id> 16 <name>Maven Repository Switchboard</name> 17 <url>http://repo1.maven.org/maven2/</url> 18 <mirrorOf>central</mirrorOf> 19 </mirror> 20 <mirror> 21 <id>repo2</id
> 22 <mirrorOf>central</mirrorOf> 23 <name>Human Readable Name for this Mirror.</name> 24 <url>http://repo2.maven.org/maven2/</url> 25 </mirror> 26 <mirror> 27 <id>ibiblio</id> 28 <mirrorOf>central</mirrorOf> 29 <name>Human Readable Name for this Mirror.</name> 30 <url>http://mirrors.ibiblio.org/pub/mirrors/maven2/</url> 31 </mirror> 32 <mirror> 33 <id>jboss-public-repository-group</id> 34 <mirrorOf>central</mirrorOf> 35 <name>JBoss Public Repository Group</name> 36 <url>http://repository.jboss.org/nexus/content/groups/public</url> 37 </mirror> 38 <mirror> 39 <id>maven.net.cn</id> 40 <name>oneof the central mirrors in china</name> 41 <url>http://maven.net.cn/content/groups/public/</url> 42 <mirrorOf>central</mirrorOf> 43 </mirror> 44 </mirrors>