每当我尝试更新 Maven 依赖项时,我都会收到类似的错误 -无法计算构建计划:null。起初我曾经得到像这样的错误
无法计算构建计划:未能从http://repo1.maven.org/maven2传输 org.apache.maven.plugins:maven-surefire-plugin:pom:2.7.1缓存在本地存储库中,解析不会重新尝试,直到经过中央的更新间隔或强制更新。原始错误:无法从/到中央(http://repo1.maven.org/maven2)传输工件 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 可能会导致。我试图快速修复它,但每当我重新打开项目时,它就会再次出现。任何帮助,将不胜感激。