Eclipse 導入項目 Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven

Eclipse 導入項目 Pom.xml出現以下錯誤:html

  Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (execution: default-compile, phase: compile)apache

 

這表示m2e在其執行maven的生命週期管理時沒有定義該插件,因此提示出錯。app

解決辦法:eclipse

  1. 進入Window—>Preferences—>Maven配置,進入Lifecycle Mapping設置項,以下圖:maven

從上圖能夠看出m2e管理maven生命週期的文件名是lifecycle-mapping-metadata.xml,以及該文件的存放路徑spa

 

2. 下一步咱們就要去相應路徑修改lifecycle-mapping-metadata.xml文件,但會發現這個文件在上圖中提示的位置並不存在,那麼此時就
以到eclipse的安裝目錄下的plugins下的org.eclipse.m2e.lifecyclemapping.defaults_xxxxxx.jar文件中找到該文件(以下圖):插件

經過解壓軟件能夠發現lifecycle-mapping-metadata.xml文件的確在jar包中,把它從jar包中解壓出來並放置到第一圖所示的路徑下xml

 

3. 打開lifecycle-mapping-metadata.xml文件,把未識別的插件在文件中加入便可:htm

<pluginExecution>
  <pluginExecutionFilter>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <versionRange>[3.1,)</versionRange>
    <goals>
      <goal>testCompile</goal>
      <goal>Compile</goal>
    </goals>
  </pluginExecutionFilter>
  <action>
    <ignore />
  </action>
</pluginExecution>blog

 4.修改完成後,需在m2e配置處把「Update Maven projects on startup」選項勾上,並重啓eclipse便可消除出錯示。

 

參考:http://www.cnblogs.com/hzhuxin/archive/2012/06/17/2552998.html

相關文章
相關標籤/搜索