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

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

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

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

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

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

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


当前回答

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

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具有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>

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

对我来说,解决方案很愚蠢:我只是使用了不正确的依赖版本。

我曾经通过删除本地repo中对应的无法下载的工件目录来解决这个问题。下次运行maven命令时,将再次触发工件下载。因此,我认为这是一个客户端设置。

Nexus端(服务器回收端),此问题是通过配置定时任务解决的。 客户端,这是使用-U完成的,正如您已经指出的那样。

在我的私有存储库上上传第三方库时,我也遇到了同样的问题。有时所描述的修复方法对我有效,但有时无效。

我认为问题的根本原因是工件缺少pom.xml文件。(第三方工件的pom.xml,而不是项目中的pom.xml)。我假设Maven期望每个工件都是pom.xml,因此它可以解析所有工件的依赖关系。有时没有pom.xml也能工作,但有时不能(我没有确定,什么时候不能)。

我使用Nexus3作为私有存储库。当您上传一个工件时,您可以选中一个选项来为工件生成一个pom.xml文件。