其他分享
首页 > 其他分享> > maven修改默认不下载快照版本的配置

maven修改默认不下载快照版本的配置

作者:互联网

添加如下配置到对应的pom.xml文件里
<repositories>
<repository>
<id>nexus-snapshots</id>
<url>http:/ipaddr:8081/nexus/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

标签:xml,快照,8081,nexus,snapshots,maven,pom,默认
来源: https://www.cnblogs.com/coding88/p/13206803.html