美文网首页
阿里maven镜像

阿里maven镜像

作者: 零星恋雪 | 来源:发表于2019-11-13 16:21 被阅读0次

    setting.xml

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

    pom.xml

    <repositories>  
            <repository>  
                <id>alimaven</id>  
                <name>aliyun maven</name>  
                <url>http://maven.aliyun.com/nexus/content/groups/public/</url>  
                <releases>  
                    <enabled>true</enabled>  
                </releases>  
                <snapshots>  
                    <enabled>false</enabled>  
                </snapshots>  
            </repository>  
    </repositories>  
    

    相关文章

      网友评论

          本文标题:阿里maven镜像

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