使用maven,我偶尔会遇到来自第三方回购的工件,这些工件我还没有构建或包含在我的存储库中。

我将从maven客户端得到一个错误消息,说无法找到工件:

无法找到org.jfrog.maven.annomojo:maven-plugin-anno:jar:1.4.0 在http://myrepo:80/artifactory/repo中缓存在本地 存储库,解析将不会重新尝试,直到更新 MyRepo的时间间隔已过或更新被强制->[帮助1]

现在,我明白了这意味着什么,并且可以简单地用-U重新运行我的命令,从那时起,事情通常都能正常工作。

然而,我发现这个错误消息非常不直观,我试图让我的同事们不那么头疼。

我试图弄清楚是否有一些地方,我可以修改这个更新间隔设置。

此错误消息中提到的更新间隔是客户端设置还是服务器端设置? 如果是客户端,如何配置? 如果是服务器端,有人知道Nexus/Artifactory如何公开这些设置吗?


当前回答

如果您正在使用Eclipse,则转到Windows ->首选项-> Maven,并取消选中“不自动从远程存储库更新依赖项”复选框。

这也适用于Maven 3。

其他回答

如果您使用Nexus作为代理回购,它有“未找到缓存TTL”设置,默认值为1440分钟(或24小时)。降低这个值可能有帮助(存储库>配置>过期设置)。

有关更多信息,请参阅文档。

这个错误有时会误导人。你可能需要检查两件事:

Is there an actual JAR for the dependency in the repo? Your error message contains a URL of where it is searching, so go there, and then browse to the folder that matches your dependency. Is there a jar? If not, you need to change your dependency. (for example, you could be pointing at a top level parent dependency, when you should be pointing at a sub project) If the jar exists on the remote repo, then just delete your local copy. It will be in your home directory (unless you configured differently) under .m2/repository (ls -a to show hidden if on Linux).

您需要删除所有“_maven”。存储库中的文件。

对于Intellij用户,以下方法对我来说是有效的:

右键单击您的包

Maven > Reimport 

and

Maven > Generate Sources and Update Folders

我是怎么得到这个问题的,

当我从Eclipse Juno更改到Luna,并从SVN repo签出我的maven项目时,我在构建应用程序时遇到了同样的问题。

我试过什么? 我尝试清理本地存储库,然后再次使用-U选项更新所有版本。但我的问题还在继续。

然后我去了窗口—>首选项—> Maven—>用户设置—>,点击本地存储库下的重新索引按钮,等待重新索引发生。

就这样,问题解决了。