我正在尝试使用Spring Data和Neo4j。我开始尝试遵循这个由主站点链接的指南。特别地,我基于“Hello, World!”示例文件创建了pom.xml。这是从我的pom.xml中截取的导致问题的插件…

<plugin>
<!-- Required to resolve aspectj-enhanced class features -->
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>aspectj-maven-plugin</artifactId>
    <version>1.0</version>
    <configuration>
        <outxml>true</outxml>
        <aspectLibraries>
            <aspectLibrary>
                <groupId>org.springframework</groupId>
                <artifactId>spring-aspects</artifactId>
            </aspectLibrary>
            <aspectLibrary>
                <groupId>org.springframework.data</groupId>
                <artifactId>spring-data-neo4j</artifactId>
            </aspectLibrary>
        </aspectLibraries>
        <source>1.6</source>
        <target>1.6</target>
    </configuration>
    <executions>
        <!-- ERROR HERE IN ECLIPSE SEE BELOW FOR FULL MESSAGE -->
        <execution>
            <goals>
                <goal>compile</goal>
                <goal>test-compile</goal>
            </goals>
        </execution>
    </executions>
    <dependencies>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjrt</artifactId>
            <version>${aspectj.version}</version>
        </dependency>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjtools</artifactId>
            <version>${aspectj.version}</version>
        </dependency>
    </dependencies>
</plugin>

我看到的错误是:

 Multiple annotations found at this line:
    - Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:aspectj-maven-plugin:1.0:compile (execution: default, phase: process-classes)
    - Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:aspectj-maven-plugin:1.0:test-compile (execution: default, phase: process-classes)

我运行的是Eclipse 3.6.2和m2e 0.13。我不是Maven专家,所以如果可能的话,请在您的回答中说明清楚。

我也尝试了m2e 1.0.0通过这个更新网站,仍然得到相同的错误。


当前回答

作为前面答案的补充——如果您不能或不想将所有这些样板文件添加到您的项目POM中,我发现了一个变通方法。如果你看下面的位置:

{Eclipse_folder}/plugins/org.eclipse.m2e.lifecyclemapping.defaults_{m2e_version}

您应该可以找到一个名为lifecycle-mapping-metadata.xml的文件,您可以在其中进行与其他答案中描述的相同的更改,以及M2E插件执行中没有涉及到的更改。

其他回答

见https://www.eclipse.org/m2e/documentation/m2e-execution-not-covered.html。

To solve some long-standing issues, m2e 1.0 requires explicit instructions what to do with all Maven plugins bound to "interesting" phases of project build lifecycle. We call these instructions "project build lifecycle mapping" or simply "lifecycle mapping" because they define how m2e maps information from project pom.xml file to Eclipse workspace project configuration and behaviour during Eclipse workspace build. Project build lifecycle mapping configuration can be specified in project pom.xml, contributed by Eclipse plugins and there is also default configuration for some commonly used Maven plugins shipped with m2e. We call these "lifecycle mapping metadata sources". m2e will create error marker like below for all plugin executions that do not have lifecycle mapping in any of the mapping metadata sources. Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-antrun-plugin:1.3:run (execution: generate-sources-input, phase: generate-sources) m2e matches plugin executions to actions using combination of plugin groupId, artifactId, version range and goal. There are three basic actions that m2e can be instructed to do with a plugin execution -- ignore, execute and delegate to a project configurator.

在Eclipse Luna 4.4.0中,您可以在首选项中选择忽略此错误

窗口>首选项> Maven >错误/警告>插件执行没有被生命周期配置覆盖。选择忽略/警告/错误。

此外,在此错误的快速修复(Ctrl + 1)中,它提供了一个选项 在Eclipse首选项中将目标标记为忽略(实验性)

这是一种更干净的方式,因为它不会修改pom.xml。

您将需要执行Maven > Update项目来修复任何其他项目中的相同错误。


在STS(Spring-tool-suite)中,您可以在首选项中选择忽略此错误

窗口>首选项> Maven >错误/警告>生命周期配置未覆盖插件执行。选择忽略/警告/错误。 然后。右键单击项目,单击Maven并更新项目,然后错误就会消失。

我在更新m2e后遇到了完全相同的问题,并通过重新安装Maven Integration for Eclipse WTP解决了这个问题。

事实证明,我卸载它时试图从版本0更新m2e。X到1.x

我按照GUI提示找到任何连接器,然后从SpringSource Team找到了AspectJ Integrator。安装后,它被解决了。

大多数答案都是关于忽略错误和其他建议的解决方案在我的案例中不起作用[对于maven-compiler-plugin]。我对这个问题的解决方案是:

进入系统中的.m2本地存储库,找到org.apache.maven.plugins目录: C:\Users\【用户名】\ .m2 \ maven存储库\ org \ apache \ \ plugins 从这个目录中删除maven-compiler-plugin文件夹 您可能需要关闭IDE (Eclipse) 之后,再次打开IDE并通过Maven更新项目 在Eclipse中右键单击项目根目录,选择Maven -> Update project…