WEIRD : mvn assembly is not adding my dependencies

2007-04-18 Thread Petr V.
Greetings All, Okay here is an issue and I am not sure what am I doing wrong. I had this in one my sub project pom plugin artifactIdmaven-assembly-plugin/artifactId configuration descriptors

Re: WEIRD : mvn assembly is not adding my dependencies

2007-04-18 Thread John Casey
You might find it easier to bind the assembly construction to the main build process, in the package phase (for example). To do this, you can use the assembly:single mojo like this: plugin artifactIdmaven-assembly-plugin/artifactId version2.2-beta-1/version executions execution

Re: WEIRD : mvn assembly is not adding my dependencies

2007-04-18 Thread Petr V.
Thanks John. you rock. I was able to add all dependencies but only one dependency was not added in my zip file. Guess which one ??? The jar file which was output of sub project :-( So basically I put the snippet in my sub project pom and issued mvn assembly from main project. It went via and