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
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
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
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
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
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
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
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
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