maven_Error building POM (may not be this project's POM)错误

    如果maven项目在执行编译等操作时报如题错误的话,请仔细检查pom.xml,一般是由pom的语法错误导致的,例如我的项目是因为:

dependencies 元素下不应该有properties元素导致的
<dependencies>
  <!-- dependencies 元素下不应该有properties元素-->
    <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

</dependencies>
原文地址:https://www.cnblogs.com/onmyway20xx/p/4939200.html