Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:aspectj-maven-plugin:1.0

I switched from q4e Helios to Indigo m2e plugin and my Maven 2 project no longer works. I had a ROO-generated Spring MVC project.

This is what I get:

Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:aspectj-maven-plugin:1.0:test-compile (execution: default, phase: process-test-sources)
Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:aspectj-maven-plugin:1.0:compile (execution: default, phase: process-sources)

Any insight is greatly appreciated. Thank you.

like image 791
alexm Avatar asked Jul 21 '11 23:07

alexm


1 Answers

If you upgraded to m2e plugin from version 0.xx to version 1.0 thats probably what caused the issues you are having, This may be helpful (it is intended for SpringSuource Tool Suite but I fixed an regular Eclipse following the advices at the end on the section called "Uh oh…my projects no longer build");

http://blog.springsource.com/2011/10/18/upgrading-maven-integration-for-springsource-tool-suite-2-8-0/

like image 181
Chepech Avatar answered Oct 15 '22 15:10

Chepech