The update policy for snapshot artifacts in my project is set to "daily" and this applies to all modules. I would like to apply a different policy to selected modules, since the artifacts they produce are quite big. Is this possible?
Its not enough to override the configuration of the selected modules. Effective pom shows the configuration is carried, but Maven/resolver ignores it. <repositories> <repository> <snapshots> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </snapshots> https://maven.apache.org/ref/3.9.8/maven-model/maven.html#class_snapshots The snapshot repository must remain enabled. Kind regards, Delany