使用maven,我偶尔会遇到来自第三方回购的工件,这些工件我还没有构建或包含在我的存储库中。
我将从maven客户端得到一个错误消息,说无法找到工件:
无法找到org.jfrog.maven.annomojo:maven-plugin-anno:jar:1.4.0
在http://myrepo:80/artifactory/repo中缓存在本地
存储库,解析将不会重新尝试,直到更新
MyRepo的时间间隔已过或更新被强制->[帮助1]
现在,我明白了这意味着什么,并且可以简单地用-U重新运行我的命令,从那时起,事情通常都能正常工作。
然而,我发现这个错误消息非常不直观,我试图让我的同事们不那么头疼。
我试图弄清楚是否有一些地方,我可以修改这个更新间隔设置。
此错误消息中提到的更新间隔是客户端设置还是服务器端设置?
如果是客户端,如何配置?
如果是服务器端,有人知道Nexus/Artifactory如何公开这些设置吗?
Maven具有updatePolicy设置,用于指定检查存储库中的更新或保持存储库与远程同步的频率。
updatePolicy的默认值为每日。
其他值可以是always / never/ XX(以分钟为单位指定间隔)。
下面的代码示例可以添加到maven用户设置文件以配置updatePolicy。
<pluginRepositories>
<pluginRepository>
<id>Releases</id>
<url>http://<host>:<port>/nexus/content/repositories/releases/</url>
<releases>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
我有一个相关的问题,但拉格拉姆的回答帮了我。(我还没有足够的声誉来为他的答案投票)。我正在使用与NetBeans捆绑的Maven,并且得到了相同的“…被缓存在本地存储库中,在nexus的更新间隔已过或更新被强制之前不会重新尝试解析->[帮助1]"错误。
为了解决这个问题,我添加了<updatePolicy>always</updatePolicy>到我的设置文件(C:\Program Files\NetBeans 7.0\java\maven\conf\settings.xml)
<profile>
<id>nexus</id>
<!--Enable snapshots for the built in central repo to direct -->
<!--all requests to nexus via the mirror -->
<repositories>
<repository>
<id>central</id>
<url>http://central</url>
<releases><enabled>true</enabled><updatePolicy>always</updatePolicy></releases>
<snapshots><enabled>true</enabled><updatePolicy>always</updatePolicy></snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://central</url>
<releases><enabled>true</enabled><updatePolicy>always</updatePolicy></releases>
<snapshots><enabled>true</enabled><updatePolicy>always</updatePolicy></snapshots>
</pluginRepository>
</pluginRepositories>
</profile>