Maven无法解决依赖关系并且无法访问jar

时间:2018-12-20 03:53:34

标签: java maven

我在pom.xml文件中有我的项目依赖项,并且所需的依赖项(它的另一个项目)jar已在.m2目录中可用。

但是当我做mvn clean compile时,出现以下错误。

[ERROR] Failed to execute goal on project core: Could not resolve dependencies for project war:1.0-SNAPSHOT: 
Cannot access pscs (http://demo01.corp.cat.com:8081/nexus/content/repositories/releases/) 
in offline mode and the artifact api-client:jar:1.0.282 has not been downloaded from it before. -> [Help 1]

但是其他项目中的相同依赖项也可以正常工作。

1 个答案:

答案 0 :(得分:0)

转到settings.xml下的\.m2\settings.xml文件。然后将offline模式的属性更改为true

<settings>
    ...

    <profiles>
        <profile>
            ...
        </profile>
    </profiles>

    <offline>true</offline>
</settings>

在那之后一切都会正常,因为Maven一直尝试连接到中央存储库。