欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Scanning errors (1): 1 Could not read pom.xml

程序员文章站 2022-06-09 17:43:02
...

我的pom.xml文件是去掉下面的部分,然后错误消失:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.1</version>
    <configuration>
        <source>1.8</source>
        <target>1.8</target>
    </configuration>
</plugin>

解决方法:

(1)出现这种问题肯定是pom.xml有问题,先自己过一遍,有没有特别明显的问题,比如标签不完整,等。

Scanning errors (1): 1 Could not read pom.xml

 (2)如果找不到上面的错误,就打开文本编辑器,把pom.xml中的标签一部分删除,然后eclipse中重新导入,看问题是否还存在。

如我先删除<profiles>的内容

Scanning errors (1): 1 Could not read pom.xml

重新导入,直接在文件下拉框来回切换选择文件就行。

Scanning errors (1): 1 Could not read pom.xml

还是同样的问题。我们maven是父子结构,三个项目,正常导入是会出现三个por.xml 的。

Scanning errors (1): 1 Could not read pom.xml

然后去掉<dependencies>标签,还是没解决。就是这样一块一块去,去排除出现问题的地方。

最后我把<plugin>标签去掉,问题解决,第三个pom.xml出现

Scanning errors (1): 1 Could not read pom.xml

 Scanning errors (1): 1 Could not read pom.xml

 

相关标签: 报错