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>

猜你喜欢

转载自www.cnblogs.com/coding88/p/13206803.html