maven 国内镜像

maven的默认的中央仓库为:maven.apache.org ,当本地仓库或者自己的maven 私服不存在相关的jar时,如没有特别设置,就去检查maven中央仓库有没有。

由于连接国外网站时网速特慢,为解决这个问题,os china 建立了一个maven 的私服。为了记忆,特将此记录。

settings.xml 设置镜像方法步骤如下:
1. mirrors 设置

<mirrors>
    
    <mirror>
        <id>nexus-oscid>
        <mirrorOf>centralmirrorOf>
        <name>Nexus oscname>
        <url>http://maven.oschina.net/content/groups/public/url>
    mirror>
    <mirror>
        <id>nexus-osc-thirdpartyid>
        <mirrorOf>thirdpartymirrorOf>
        <name>Nexus osc thirdpartyname>
        <url>http://maven.oschina.net/content/repositories/thirdparty/url>
    mirror>
mirrors>

2. repositories 设置

<profile>
                <id>jdk-1.4id>

                <activation>
                    <jdk>1.4jdk>
                activation>

                <repositories>
                    <repository>
                        <id>nexusid>
                        <name>local private nexusname>
                        <url>http://maven.oschina.net/content/groups/public/url>
                        <releases>
                            <enabled>trueenabled>
                        releases>
                        <snapshots>
                            <enabled>falseenabled>
                        snapshots>
                    repository>
                repositories>
                <pluginRepositories>
                    <pluginRepository>
                        <id>nexusid>
                        <name>local private nexusname>
                        <url>http://maven.oschina.net/content/groups/public/url>
                        <releases>
                            <enabled>trueenabled>
                        releases>
                        <snapshots>
                            <enabled>falseenabled>
                        snapshots>
                    pluginRepository>
                pluginRepositories>
            profile>

详细信息可查看:http://maven.oschina.net/help.html

你可能感兴趣的:(maven)