As Joerg says, just merging the two execution in the same executions element, and including a phase element ?
<executions> <execution> <id>ear-eclipse-manifest</id> <phase>generate-resources</phase> <configuration> ... </configuration> </execution> <execution> <id>another-task</id> <phase>anotherphase-after-generateersources</phase> <configuration> ... </configuration> </execution> </executions> --- Veyret Stephane <[EMAIL PROTECTED]> a écrit : > Hi Adrian, > > Thank you for your answer. > > Actually, I can't do what you suggest for I need to > execute other plugins between jar building and jar > signing. Anyway, I often need to separate 2 plugin > executions, I've never seen anywhere that it was > forbiden, and this is the first time it does not > work... > > -----Message d'origine----- > De : Adrian Gonzalez [mailto:[EMAIL PROTECTED] > Envoyé : mercredi 17 octobre 2007 10:29 > À : Maven Users List > Objet : RE : Configuration not working for multiple > calls of same plugin > > If I understand Maven correclty (I'm quite a > newbie), there can only be one plugin of the same > groupId / artifactId in the plugins element. > If you have multiple execution elements you should > put them together in <executions>. > > --------------------------------------------------------------------- > To unsubscribe, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] > > _____________________________________________________________________________ Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
