本文主要是介绍异常处理:Eclipse下解决Plugin execution not covered by lifecycle configuration异常,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
异常描述:
今天尝试导入Apache Vysper源码,使用eclipse juno+m2e插件,发现如下错误:
Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:properties-maven-plugin:1.0-alpha-1:write-project-properties (execution: default, phase: generate-resources)
原因是eclipse的m2e插件还没有支持到execution:http://wiki.eclipse.org/M2E_plugin_execution_not_covered
解决办法如下。
修改前的配置:
<build> <plugins><plugin><groupId>org.codehaus.mojo</groupId><artifactId>properties-maven-plugin</artifactId><version>1.0-alpha-1</version><executions><execution><phase>generate-resources</phase><goals><goal>write-project-properties</goal></goals><configuration><outputFile>${project.build.outputDirectory}/org/apache/vysper/xmpp/server/vysperserver.properties</outputFile></configuration></execution></executions></plugin></plugins></build>
修改之后的配置:
<build><pluginManagement><plugins><!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --><plugin><groupId>org.eclipse.m2e</groupId><artifactId>lifecycle-mapping</artifactId><version>1.0.0</version><configuration><lifecycleMappingMetadata><pluginExecutions><pluginExecution><pluginExecutionFilter><groupId>org.codehaus.mojo</groupId><artifactId>aspectj-maven-plugin</artifactId><versionRange>[1.0,)</versionRange><goals><goal>test-compile</goal><goal>compile</goal></goals></pluginExecutionFilter><action><execute /></action></pluginExecution></pluginExecutions></lifecycleMappingMetadata></configuration></plugin><plugin><groupId>org.codehaus.mojo</groupId><artifactId>properties-maven-plugin</artifactId><version>1.0-alpha-1</version><executions><execution><phase>generate-resources</phase><goals><goal>write-project-properties</goal></goals><configuration><outputFile>${project.build.outputDirectory}/org/apache/vysper/xmpp/server/vysperserver.properties</outputFile></configuration></execution></executions></plugin></plugins></pluginManagement></build>
参考:http://stackoverflow.com/questions/6352208/how-to-solve-plugin-execution-not-covered-by-lifecycle-configuration-for-sprin
这篇关于异常处理:Eclipse下解决Plugin execution not covered by lifecycle configuration异常的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!