美文网首页
阿里云配置中央仓库

阿里云配置中央仓库

作者: 小牛长成记 | 来源:发表于2018-12-07 10:14 被阅读0次

    配置方法1: 在 $MAVEN_HOME/conf 下的 settings.xml 的<mirrors>标签中添加如下配置:

    <mirror>  
      <id>alimaven</id>  
      <name>aliyun maven</name>  
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>  
      <mirrorOf>central</mirrorOf>          
    </mirror>  
    

    配置方法2: 在 pom.xml 中直接添加

    <repositories><!-- 代码库 -->  
        <repository>  
            <id>maven-ali</id>  
            <url>http://maven.aliyun.com/nexus/content/groups/public//</url>  
            <releases>  
                <enabled>true</enabled>  
            </releases>  
            <snapshots>  
                <enabled>true</enabled>  
                <updatePolicy>always</updatePolicy>  
                <checksumPolicy>fail</checksumPolicy>  
            </snapshots>  
        </repository>  
    </repositories>  
    

    相关文章

      网友评论

          本文标题:阿里云配置中央仓库

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