我在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]
但是其他项目中的相同依赖项也可以正常工作。
答案 0 :(得分:0)
转到settings.xml
下的\.m2\settings.xml
文件。然后将offline
模式的属性更改为true
。
<settings>
...
<profiles>
<profile>
...
</profile>
</profiles>
<offline>true</offline>
</settings>
在那之后一切都会正常,因为Maven一直尝试连接到中央存储库。