Re: [M2]skip parent

2007-07-16 Thread Rémy Sanlaville
For the moment maven-antrun-plugin do not allows you to skip plugin's execution cf. http://jira.codehaus.org/browse/MANTRUN-65 , Vote for it ! :-) You can also vote for it ! http://jira.codehaus.org/browse/MNG-3102 Rémy

Re: [M2]skip parent

2007-07-13 Thread Rémy Sanlaville
As promised, I tried for the multiple executions. For the moment maven-antrun-plugin do not allows you to skip plugin's execution cf. http://jira.codehaus.org/browse/MANTRUN-65, Vote for it ! :-) But you can do this : parent-pom : --

Re: [M2]skip parent

2007-07-13 Thread Rémy Sanlaville
Hi Tim you should split the common configuration (parent pom) and the project aggregation ( tag) in two separate poms: myproject | |-myproject-parent |-module1 |-module2 You then would have all three modules declared in the top level pom and module1 and module2 would have myproject-par

Re: [M2]skip parent

2007-07-13 Thread Rémy Sanlaville
Hi Wendy, Usually you would put it in pluginManagement in the parent, but I'm not sure how well that's going to work if you ever have multiple executions in antrun. (BTW, it's a good idea to give that an .) That's what I needed. Many thanks. For the moment I don't need multiple executions.

Re: [M2]skip parent

2007-07-12 Thread Tim Kettler
Hi, you should split the common configuration (parent pom) and the project aggregation ( tag) in two separate poms: myproject | |-myproject-parent |-module1 |-module2 You then would have all three modules declared in the top level pom and module1 and module2 would have myproject-parent a

Re: [M2]skip parent

2007-07-12 Thread Wendy Smoak
On 7/12/07, Rémy Sanlaville <[EMAIL PROTECTED]> wrote: It's fine with a such simple example. But if you use for instance weblogic ant tasks, it's a problem. The build failed because it can't deploy a war package at the parent level. So, It would be very nice to can skip the execution at the pare

[M2]skip parent

2007-07-12 Thread Rémy Sanlaville
Hi, I wonder if it is possible in a multimodules project to skip the execution just for the parent. For instance, if you have 2 modules and you declare the maven-antrun-plugin configuration in the your parent pom : ... module1 module2 maven-