maven修改默认不下载快照版本的配置
Posted coding88
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>
以上是关于maven修改默认不下载快照版本的配置的主要内容,如果未能解决你的问题,请参考以下文章
maven中snapshot快照库和release发布库的区别和作用
maven中snapshot快照库和release发布库的区别和作用