生命周期配置maven错误未涵盖插件执行

时间:2012-07-12 08:58:12

标签: maven

我导入了一个现有的maven项目但是我在pom.xml中遇到了一些错误:

Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-

 compiler-plugin:2.3.2:compile (execution: default-compile, phase: compile) pom.xml 

 /org.squashtest.csp.tools.unittest line 50 Maven Project Build Lifecycle Mapping Problem

但我无法理解为什么,

这是pom.xml:

 <?xml version="1.0"?>
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org  
  /2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0   
  http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
<parent>
    <artifactId>squashtest-csp-tools</artifactId>
    <groupId>org.squashtest.tm</groupId>
    <version>1.2.0.RELEASE</version>
</parent>
<artifactId>org.squashtest.csp.tools.unittest</artifactId>
<name>Squashtest CSP - Tools module - Unit tests library</name>
<description>Library  of classes used for unit-testing other Squashtest        
     components</description>

<dependencies>
    <!-- ====== GROOVY ====== -->
    <dependency>
        <groupId>org.codehaus.groovy</groupId>
        <artifactId>groovy-all</artifactId>
        <scope>compile</scope>
    </dependency>
    <!-- ====== /GROOVY ====== -->
    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>org.squashtest.org.hibernate.core</artifactId>
        <version>${hibernate.version}</version>
        <scope>compile</scope>
        <optional>true</optional>
    </dependency>
    <dependency>
        <groupId>org.unitils</groupId>
        <artifactId>unitils-database</artifactId>
        <version>3.1</version>
        <scope>compile</scope>
        <optional>true</optional>
        <exclusions>
            <exclusion>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-nop</artifactId>
            </exclusion>
            <exclusion>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-api</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
</dependencies>
<build>
    <sourceDirectory>src/main/groovy</sourceDirectory>
    <testSourceDirectory>src/test/groovy</testSourceDirectory>
    <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <executions><execution></execution></executions>
      <version>2.3.2</version>
      </plugin> 
    </plugins>
 </build>
</project>

提前谢谢

4 个答案:

答案 0 :(得分:25)

这是Groovy maven配置的问题。更具体地说,m2e连接器问题,一般来说,这是一场噩梦。此链接包含有关the m2e connector mess的详细信息。

摘要

要解决此问题,您可以获取springource提供的m2e连接器。

http://dist.springsource.org/release/GRECLIPSE/e4.2/

详细

使用它:

  1. 点击帮助&gt;安装新软件......
  2. 将以上网址粘贴到&#34;使用:&#34;字段
  3. 展开&#34; m2e用于Groovy-Eclipse的配置器&#34;
  4. 选择第一个选项&#34; Groovy-Eclipse m2e Integration&#34;并安装它
  5. Install Groovy-Eclipse M2E Integratoin

    我还建议安装&#34;用于Eclipse的#34; Groovy / Grails工具套件&#34;来自Eclipse Marketplace的(GGTS)。我刚刚在Eclipse Kepler中完成了这两个(在接口上安装GGTS),它解决了上面的确切问题。此修复程序也适用于Juno。

答案 1 :(得分:0)

在Maven中,在此错误之前需要检查的事情很少。

  1. 您是否可以从.m2存储库下载jar? - &GT;为此,只需删除.m2文件夹下的存储库文件夹,然后尝试更新Maven项目。然后,您可以在.m2文件夹下看到新的Repository文件夹。 - &GT;检查所有maven-plugin jar都在org / apache / maven

  2. 检查您是否能够在Settings.xml文件中打开存储库URL - &GT;在任何浏览器中打开该URL并检查您是否能够打开。

  3. 有时候第三方存储库jar可能已损坏。 - &GT;这将由第三党人照顾 - &GT;例如:如果你指向Nexus存储库,他们必须再次上传所需的maven jar。有时上传罐子可能会损坏。

答案 2 :(得分:0)

对我来说有用的是安装M2E Groovy-Eclipse集成,还要为maven编译器插件添加更多配置,以便使用java和groovy类:

<plugin>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.1</version>
    <configuration>
       <compilerId>groovy-eclipse-compiler</compilerId>
       <source>1.7</source>
           <target>1.7</target>
    </configuration>
    <dependencies>
                <dependency>
                    <groupId>org.codehaus.groovy</groupId>
                    <artifactId>groovy-eclipse-compiler</artifactId>
                    <version>2.8.0-01</version>
                </dependency>
                <dependency>
                    <groupId>org.codehaus.groovy</groupId>
                    <artifactId>groovy-eclipse-batch</artifactId>
                    <version>2.1.8-01</version>
                </dependency>
    </dependencies>
</plugin>

答案 3 :(得分:0)

我有类似的问题。 Eclipse说

  

生命周期配置未涵盖插件执行:org.apache.maven.plugins:maven-checkstyle-plugin:3.0.0:checkstyle(执行:默认,阶段:验证)

删除checkstyle后,还有其他类似的问题。

要解决此问题,请单击快速修复选项:“发现新的m2e连接器”。 Eclipse自动列出所需的内容。您所要做的就是单击“完成”按钮。

我的Eclipse版本是Oxygen.2(4.7.2)。希望这可以帮助。