Fork me on GitHub

logo我的个人地带

努力每一天,每天进步一点点,每天快乐一点点

maven国内各镜像源

找到maven安装目录下的settings.xml配置文件

  1. aliyun镜像

  2. <mirror>
          <id>alimaven</id>
          <name>aliyun maven</name>
          <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
          <mirrorOf>central</mirrorOf>        
        </mirror>
  3. 华为   文档


在setting.xml配置文件的mirrors节点中添加开源镜像仓地址:

<mirror>
<id>repo2</id>
<mirrorOf>central</mirrorOf>
<url>https://repo1.maven.org/maven2/</url>
</mirror>

在setting.xml配置文件的profiles节点中添加如下镜像仓地址:

<profile>
<id>huaweicloudsdk</id>
<repositories>
<repository>
<id>huaweicloudsdk</id>
<url>https://repo.huaweicloud.com/repository/maven/huaweicloudsdk/</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
</profile>

在setting.xml配置文件的activeProfiles节点中添加如下镜像仓地址:

<activeProfile>huaweicloudsdk</activeProfile>

第二种方法:

在二次开发工程样例工程中的pom.xml文件添加如下镜像仓地址:

    <repositories>
        <repository>
            <id>huaweicloudsdk</id>
            <url>https://mirrors.huaweicloud.com/repository/maven/huaweicloudsdk/</url>
            <releases><enabled>true</enabled></releases>
            <snapshots><enabled>true</enabled></snapshots>
        </repository>

        <repository>
            <id>central</id>
            <name>Mavn Centreal</name>
            <url>https://repo1.maven.org/maven2/</url>
        </repository>
    </repositories>


Comments 0