Maven is a comprehensive tool used to build software projects which responds to preconfigured plugins configured into its build lifecycle Eclipse is an IDE which will provide you a comprehensive view of your entire project..(BTW Netbeans and IDEA assomplish the same objective) The plugin you are using is supposedly generating a pom.xml with a specific plugin into your build but there are parts missing We *can* help you configure the generated pom.xml ONLY If you send us the maven project (the pom.xml) that is generated by your eclipse build tool
The error message: Plugin execution not covered by lifecycle configuration: org.mule.tools:maven-mule-plugin:1.7:filter-resources (execution: default-filter-resources, phase: process-resources) means that your specific plugin: org.mule.tools:maven-mule-plugin:1.7:filter-resources DOES NOT execute in the default execution cycle phases of default-filter-resources, phase: process-resources How to enable filtering and to incorporate filters:filter and resources:resource properties into your build are explained at: http://www.sonatype.com/books/mvnref-book/reference/resource-filtering-sect-description.html http://www.avajava.com/tutorials/lessons/how-do-i-filter-resources-based-on-values-from-a-properties-file.html;jsessionid=B8923A0BAD56FE60A04D9DFF1DBCF178 Martin ______________________________________________ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte Weiterleitung oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht dient lediglich dem Austausch von Informationen und entfaltet keine rechtliche Bindungswirkung. Aufgrund der leichten Manipulierbarkeit von E-Mails koennen wir keine Haftung fuer den Inhalt uebernehmen. Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le destinataire prévu, nous te demandons avec bonté que pour satisfaire informez l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci est interdite. Ce message sert à l'information seulement et n'aura pas n'importe quel effet légalement obligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. > Date: Mon, 13 Aug 2012 11:16:29 +0200 > Subject: Re: pom > From: [email protected] > To: [email protected]; [email protected] > > Either install an eclipse plugin that is aware how to handle it or use the > eclipse quickfix. > > The quickfix will add some build plugin configuration that tells eclipse > what to do. You should choose action "execute" to simply execute the goal. > Or ignore to let eclipse silently drop it (and invoke it only manually from > command line). > See http://wiki.eclipse.org/M2E_plugin_execution_not_covered for detail. > > On Mon, Aug 13, 2012 at 11:13 AM, redsdh <[email protected]> wrote: > > > ** > > Hi, > > > > I import a maven project with the pom file which is included in > > attach. eclipse report this error : > > > > Plugin execution not covered by lifecycle configuration: > > org.mule.tools:maven-mule-plugin:1.7:attach-test-resources (execution: > > default-attach-test-resources, phase: validate) > > > > > > Plugin execution not covered by lifecycle configuration: > > org.mule.tools:maven-mule-plugin:1.7:filter-resources (execution: > > default-filter-resources, phase: process-resources) > > > > > > Please tell how to resolve it . Thank you ! > > > > Best regards ! > > > > ------------------------------ > > > > lake shen > > [email protected] > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [email protected] > > For additional commands, e-mail: [email protected] > >
