美文网首页
maven 本地pom.xml文件打包添加指定阿里云镜像源

maven 本地pom.xml文件打包添加指定阿里云镜像源

作者: lancelot123 | 来源:发表于2020-05-05 15:34 被阅读0次
<repositories>
        <repository>
            <id>public</id>
            <name>aliyun nexus</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <releases>
                <enabled>true</enabled>
            </releases>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>public</id>
            <name>aliyun nexus</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>

相关文章

网友评论

      本文标题:maven 本地pom.xml文件打包添加指定阿里云镜像源

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