maven仓库

来源:互联网 发布:编程用什么cpu 编辑:程序博客网 时间:2024/05/21 15:00
  1. maven仓库setting.xml中的mirror配置
 <mirrors>    <!-- mirror     | Specifies a repository mirror site to use instead of a given repository. The repository that     | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used     | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.     |    <mirror>      <id>mirrorId</id>      <mirrorOf>repositoryId</mirrorOf>      <name>Human Readable Name for this Mirror.</name>      <url>http://my.repository.com/repo/path</url>    </mirror>     -->    <mirror>        <id>CN</id>        <name>OSChina Central</name>         <url>http://repo1.maven.org/maven2</url>        <mirrorOf>central</mirrorOf>    </mirror>    <mirror>        <id>CN</id>        <name>OSChina Central</name>         <url>http://central.maven.org/maven2</url>        <mirrorOf>central</mirrorOf>    </mirror>    <!--<mirror>        <id>CN</id>        <name>OSChina Central</name>         <url>http://maven.oschina.net/content/groups/public</url>        <mirrorOf>central</mirrorOf>    </mirror>-->  </mirrors>
  1. Maven Repository:http://mvnrepository.com/