什么是Maven中updatePolicy的默认值

问题描述 投票:0回答:1

在maven doc中,snapshots标签中有属性“updatePolicy”的描述:https://maven.apache.org/ref/3.6.0/maven-settings/settings.html#snapshots

当我没有在pom.xml中指定它时,maven没有抱怨:

    <repository>
       <snapshots>
        <enabled>true</enabled>
       </snapshots>
     <id>central</id>
     <url>http://artifactory.../artifactory/repo</url>
</repository>

那么我希望有一个默认值,但默认值是多少?

maven
1个回答
2
投票

默认值为daily,此处记录为https://maven.apache.org/settings.html

© www.soinside.com 2019 - 2024. All rights reserved.