首页 > 其他分享 >解决Maven下载依赖慢的问题

解决Maven下载依赖慢的问题

时间:2023-02-27 17:23:23浏览次数:45  
标签:依赖 false nexus Maven aliyun 下载

参考:https://blog.csdn.net/web15085599741/article/details/126459039

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

标签:依赖,false,nexus,Maven,aliyun,下载
From: https://www.cnblogs.com/feel-myself/p/17160508.html

相关文章