Maven依赖中类似was cached in the local repository样的错误

我们在使用maven编译一个项目时经常会遇到诸如此类的问题。

大体意思是jar包没有下载完整,不过也要分两种情况。

一种可能就是本地没有下载完整,这里的原因可能第一次下载由于网络原因不成功,之后maven也没在尝试。

引用This is often a false positive. Imagine you have a connection issue lasting only 5 seconds when Maven 3 tries to download a dependency, it will mark this dependency as unavailable for a delay. And thus will prevent you from replaying the build command even if the network issue is fixed.Just run the command with the -U option. Even if its description applies to snapshots, it seems to also fix the error if it occurred on a release.Example: mvn -U clean package

此外,我们可以在setting.xml中增加updatePolicy策略

setting.xml指导

在setting.xml的schema中有这样一个描述

schema

另一种情况就是我们依赖的nexus也没有下载完整,,这时候可能是配置的中央仓库代理仓库根本就不存在此jar,或者需要在第三方仓库中才能找到,此时我们应该尝试检查和配置代理仓库。

歌里唱的是“你离开我,就是旅行的意义”,

Maven依赖中类似was cached in the local repository样的错误

相关文章:

你感兴趣的文章:

标签云: