解决Eclipse2021-12版本pom.xml报错“cvc-elt.1.a: Cannot find the declaration of element ‘project‘.”

解决Eclipse2021-12版本pom.xml报错“cvc-elt.1.a: Cannot find the declaration of element ‘project‘.”,第1张

解决Eclipse2021-12版本pom.xml报错“cvc-elt.1.a: Cannot find the declaration of element ‘project‘.”

下载了Eclipse2021-12的java开发版,打开Eclipse2017版本开发的项目,报pom.xml异常,异常信息如下:

cvc-elt.1.a: Cannot find the declaration of element 'project'.

虽然不影响项目打包发布,又不想关闭xml校验,红XX看着总是觉得难受,网上搜了些资料,说是用 maven->update project即可解决,试了下无效果。最终自己找到解决办法。

修改前的 pom.xml

    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
    4.0.0
    ...

修改后的xml

    xsi:schemaLocation="http://maven.apache.org/xsd/maven-4.0.0.xsd" >
    4.0.0
   ...
注意去掉:http://maven.apache.org/POM/4.0.0,问题即可解决,因为这个地址已不存在了。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5081806.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存