Re: Multi Module Project Assembly plugin

2009-11-14 Thread Anders Hammar
Well, I could try. /Anders On Sat, Nov 14, 2009 at 07:10, Stephanie Johnson wrote: > Explanation and suggestion in the link was not clear and I couldnt find it > again. Hence came to Maven Users list for any suggestions. Could you please > continue to take a look? > > On Fri, Nov 13, 2009 at 3:3

Re: Multi Module Project Assembly plugin

2009-11-13 Thread Stephanie Johnson
Explanation and suggestion in the link was not clear and I couldnt find it again. Hence came to Maven Users list for any suggestions. Could you please continue to take a look? On Fri, Nov 13, 2009 at 3:35 PM, Anders Hammar wrote: > Well, if the same issue was reported somewhere else and there is

Re: Multi Module Project Assembly plugin

2009-11-13 Thread Anders Hammar
Well, if the same issue was reported somewhere else and there is a workaround - go with that! /Anders On Fri, Nov 13, 2009 at 16:19, Stephanie Johnson wrote: > Added inheritance=true and phase=install, still install doesnt build the > assemblies. > > I read about the same issue in some forum las

Re: Multi Module Project Assembly plugin

2009-11-13 Thread Stephanie Johnson
Added inheritance=true and phase=install, still install doesnt build the assemblies. I read about the same issue in some forum last week, did not understand the explanation correctly. Now trying to find the link, couldnt find it. But there was some reference about parent pom referring to child, ch

Re: Multi Module Project Assembly plugin

2009-11-12 Thread Anders Hammar
I think what you're missing is making the plugin inherited. You set that like this: true Check the pom schema (or this page: http://maven.apache.org/guides/introduction/introduction-to-the-pom.html) for exact syntax. Also, I noticed that you don't have no id defined for the execution. I'm not sure

Re: Multi Module Project Assembly plugin

2009-11-12 Thread Stephanie Johnson
I have attached my parent pom.xml and one of my modules pom.xml. Please take a look. Thanks. On 11/12/09, Anders Hammar wrote: > You mus be doing something wrong. If the plugin is bound correctly, it will > be executed. > If you post the pom snippet we might spot the issue. > > /Anders > > On Th

Re: Multi Module Project Assembly plugin

2009-11-12 Thread Anders Hammar
You mus be doing something wrong. If the plugin is bound correctly, it will be executed. If you post the pom snippet we might spot the issue. /Anders On Thu, Nov 12, 2009 at 19:25, Stephanie Johnson wrote: > Thanks for your suggestion Anders. But that doesnt seem to work. If I > associate my ass

Re: Multi Module Project Assembly plugin

2009-11-12 Thread Stephanie Johnson
Thanks for your suggestion Anders. But that doesnt seem to work. If I associate my assembly plugin to package phase or install phase and run mvn install or mvn package - it does not build my assemblies. I tried running mvn install first and then running mvn assembly:assembly. This generates follow

Re: Multi Module Project Assembly plugin

2009-11-10 Thread Anders Hammar
You should bind the assembly plugin to an appropriate phase (such as 'package'). The, you only need to run mvn install /Anders On Tue, Nov 10, 2009 at 22:33, Stephanie Johnson wrote: > All, > > I am using Maven 2.0.9 to build a multi module project. I have defined the > assembly plugin in my par