maven之开源中国Maven库

国内镜像地址
<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>nexus-osc</id>
        <mirrorOf>*</mirrorOf>
        <name>Nexus osc</name>
        <url>http://maven.oschina.net/content/groups/public/</url>
    </mirror>
</mirrors>


将setting.xml放到C:\Users\${user_home}\.m2目录下

参考文章
http://maven.oschina.net/help.html

猜你喜欢

转载自phl.iteye.com/blog/1995090