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>

posted @ 2020-06-29 11:00  coding88  阅读(1073)  评论(0编辑  收藏  举报