美文网首页
maven更换镜像地址、本地仓库地址

maven更换镜像地址、本地仓库地址

作者: shen33 | 来源:发表于2019-03-18 11:52 被阅读0次

    更换镜像地址

    setting配置

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

    pom 配置

    <repositories>
        <repository>
            <id>alimaven</id>
            <name>aliyun maven</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
        </repository>
    </repositories>
    

    本地仓库地址

    <localRepository>D:\develop\maven_res</localRepository>
    

    相关文章

      网友评论

          本文标题:maven更换镜像地址、本地仓库地址

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