美文网首页
maven修改为阿里云仓库

maven修改为阿里云仓库

作者: 疯狂的冰块 | 来源:发表于2020-05-23 00:25 被阅读0次

maven修改为阿里云仓库

 <repository>
              <id>alimaven</id>
              <name>aliyun maven</name>
              <url>https://maven.aliyun.com/repository/public</url>
              <releases>
                  <enabled>true</enabled>
              </releases>
              <snapshots>
                  <enabled>true</enabled>
              </snapshots>
          </repository>
          <repository>
              <id>alimaven-spring</id>
              <name>aliyun maven</name>
              <url>https://maven.aliyun.com/repository/spring</url>
              <releases>
                  <enabled>true</enabled>
              </releases>
              <snapshots>
                  <enabled>true</enabled>
              </snapshots>
          </repository>
          <repository>
              <id>alimaven-central</id>
              <name>aliyun maven</name>
              <url>https://maven.aliyun.com/repository/central</url>
              <releases>
                  <enabled>true</enabled>
              </releases>
              <snapshots>
                  <enabled>true</enabled>
              </snapshots>
          </repository>
          <repository>
              <id>alimaven-apache-snapshots</id>
              <name>aliyun maven</name>
              <url> https://maven.aliyun.com/repository/apache-snapshots</url>
              <releases>
                  <enabled>true</enabled>
              </releases>
              <snapshots>
                  <enabled>true</enabled>
              </snapshots>
          </repository>
          <repository>
              <id>aliyun-jcenter</id>
              <name>aliyun maven</name>
              <url>https://maven.aliyun.com/repository/jcenter</url>
              <releases>
                  <enabled>true</enabled>
              </releases>
              <snapshots>
                  <enabled>true</enabled>
              </snapshots>
          </repository>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                      http://maven.apache.org/xsd/settings-1.0.0.xsd">
  <localRepository/>
  <interactiveMode/>
  <usePluginRegistry/>
  <offline/>
  <pluginGroups/>
  <servers/>
  <mirrors>

   <mirror>
     <id>jcenter</id>
     <mirrorOf>*</mirrorOf>
     <name>jcenter</name>
     <url>https://maven.aliyun.com/repository/jcenter</url>
    </mirror>

  <mirror>
     <id>central</id>
     <mirrorOf>*</mirrorOf>
     <name>central</name>
     <url>https://maven.aliyun.com/repository/central</url>
    </mirror>
    
   
    <mirror>
     <id>aliyunmaven</id>
     <mirrorOf>*</mirrorOf>
     <name>阿里云公共仓库</name>
     <url>https://maven.aliyun.com/repository/public</url>
    </mirror>
     <mirror>
     <id>aliyunmaven</id>
     <mirrorOf>*</mirrorOf>
     <name>阿里云谷歌仓库</name>
     <url>https://maven.aliyun.com/repository/google</url>
    </mirror>
    <mirror>
     <id>aliyunmaven</id>
     <mirrorOf>*</mirrorOf>
     <name>阿里云阿帕奇仓库</name>
     <url>https://maven.aliyun.com/repository/apache-snapshots</url>
    </mirror>
    <mirror>
     <id>aliyunmaven</id>
     <mirrorOf>*</mirrorOf>
     <name>阿里云spring仓库</name>
     <url>https://maven.aliyun.com/repository/spring</url>
    </mirror>
    <mirror>
     <id>aliyunmaven</id>
     <mirrorOf>*</mirrorOf>
     <name>阿里云spring插件仓库</name>
     <url>https://maven.aliyun.com/repository/spring-plugin</url>
    </mirror>
  </mirrors>
  <proxies/>
  <profiles/>
  <activeProfiles/>
</settings>

相关文章

  • maven修改为阿里云仓库

    maven修改为阿里云仓库

  • 更换仓库为阿里云

    替换为阿里云仓库 maven替换国内仓库镜像gradle 替换为国内阿里云仓库 仓库名称阿里云仓库地址centra...

  • mirrors

    maven 仓库地址 阿里云

  • Android阿里云镜像

    仓库名称 阿里云仓库地址 阿里云仓库地址(老版) 源地址central https://maven.aliy...

  • maven仓库镜像

    阿里云仓库镜像 gradle 配置 阿里云 代理了很多公共的maven仓库 网易云仓库镜像gradle配置

  • maven配置阿里云

    阿里云Maven中央仓库为 阿里云云效 提供的公共代理仓库,帮助研发人员提高研发生产效率,使用阿里云Maven中央...

  • aliyun阿里云Maven仓库地址

    使用IDEA自带的原版Maven下载Spring源码报错。更换Maven仓库镜像后解决。 阿里云的Maven仓库镜...

  • 修改中央仓库地址

    1 找到Maven的配置文件 2 修改Maven中央仓库地址 阿里云仓库地址 公司内部仓库地址

  • Maven使用多种方式配置私有仓库

    在Maven项目中,大部分jar包可从阿里云仓库(Maven默认它的中央仓库,但是国内慢一般选择阿里云)获取,但是...

  • 无标题文章

    [Gradle 修改 Maven 仓库地址] 开源中国的Maven库2016年8月停止服务了。把库地址改为阿里的:

网友评论

      本文标题:maven修改为阿里云仓库

      本文链接:https://www.haomeiwen.com/subject/zjbzuhtx.html