I imported my maven project into eclipse but it gave me this error
Plugin execution not covered by lifecycle configuration
and i made change on my pom.xml as this:
</pluginExecutionFilter> <action> <ignore /> </action> </pluginExecutions>
and after that i tried this
Maven > Update Project
but the same result as before ,what can i do to eliminate the error?
thanks in advance,
Hi,
Can you try all the hints from http://wiki.eclipse.org/M2E_plugin_execution_not_covered?
From what I can see the <action> element should be located inside <pluginExecution> so the code can look like:
</pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions>
Please note missing </pluginExecution> in your snippet.
Cheers,
Jacek
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
yes i followed this doc( set up the eclipse IDE for linux)
Here's what I've done
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.