gpt4 book ai didi

Maven 无法计算构建计划 :Failure to transfer org. apache.maven.plugins

转载 作者:行者123 更新时间:2023-12-02 01:48:37 24 4
gpt4 key购买 nike

每当我尝试更新 Maven 依赖项时,都会收到类似错误 - 无法计算构建计划:null。起初我经常遇到类似

的错误

无法计算构建计划:无法从 http://repo1.maven.org/maven2 传输 org.apache.maven.plugins:maven-surefire-plugin:pom:2.7.1已缓存在本地存储库中,除非中央更新间隔已过或强制更新,否则不会重新尝试解析。原始错误:无法从中央(http://repo1.maven.org/maven2)传输 Artifact org.apache.maven.plugins:maven-surefire-plugin:pom:2.7.1: ConnectException

但是,当我对 settings.xml 文件进行更改并在 settings.xml 中添加存储库和插件存储库时,如

<repository>
<id>central</id>
<url>http://central</url>
<releases><enabled>true</enabled><updatePolicy>always</updatePolicy></releases>
<snapshots><enabled>true</enabled><updatePolicy>always</updatePolicy></snapshots>
</repository>
<pluginRepository>
<id>central</id>
<url>http://central</url>
<releases><enabled>true</enabled><updatePolicy>always</updatePolicy></releases>
<snapshots><enabled>true</enabled><updatePolicy>always</updatePolicy></snapshots>
</pluginRepository>

之前的错误已删除,但现在出现以下错误:无法计算构建计划:null如何摆脱这个错误!!以及如何摆脱这个警告

类路径条目 org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER 将不会被导出或发布。可能会导致运行时 ClassNotFoundExceptions。我尝试快速修复它,但每当我重新打开该项目时,它就会再次出现。任何帮助将不胜感激。

最佳答案

我能够通过在位于 config.xml 的 settings.xml 文件中启用代理来解决此问题。首先尝试了不同的解决方案,如上述问题所述,在 settings.xml 文件中添加 repositorypluginRepository 。但实际问题出在代理配置上。我已经尝试过@akb在 maven in 5 min not working 给出的解决方案。对我来说最有效的解决方案是解决方案 #1,因为我的组织的代理设置不是自动配置的。只需在 settings.xml 中包含以下数据并执行 mvn clean,并更新它有效的依赖项。

<proxies>
<proxy>
<id>optional</id>
<active>true</active>
<protocol>http</protocol>
<host>webproxy</host>
<port>8080</port>
<username>proxyuser</username>
<password>proxypass</password>
</proxy>
</proxies>

关于Maven 无法计算构建计划 :Failure to transfer org. apache.maven.plugins,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13885496/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com