Re: [M2] Is it possible to create an assembly w/o assembly.xml?

2006-04-18 Thread Gautham Pamu
Is this plugin multiple project aware. If I run the command from top level, it is doing assembly only for the top project but not for the children. Is there fix for this problem. Thanks Gautham Pamu On 4/8/06, Gautham Pamu [EMAIL PROTECTED] wrote: HiJakub, I tried this mvn assembly:assembly

Re: [M2] Is it possible to create an assembly w/o assembly.xml?

2006-04-08 Thread Gautham Pamu
HiJakub, I tried this mvn assembly:assembly -DdescriptorId=bin with mvn 2.0.3 version and I getting this error.. do we need to specify something in my pom.xmlfiles... I don't have any assembly configuration in my pom [INFO] [assembly:assembly] [INFO]

[M2] Is it possible to create an assembly w/o assembly.xml?

2006-04-05 Thread Szczepan Faber
Is it possible to create an assembly w/o assembly.xml (assembly descriptor)? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [M2] Is it possible to create an assembly w/o assembly.xml?

2006-04-05 Thread Valerio Schiavoni
yes, there are pre-defined assembly descriptors. http://maven.apache.org/plugins/maven-assembly-plugin/howto.html m2 assembly:assembly -Dmaven.assembly.descriptorId=bin or m2 assembly:assembly -Dmaven.assembly.descriptorId=jar-with-dependencies or m2 assembly:assembly

Re: [M2] Is it possible to create an assembly w/o assembly.xml?

2006-04-05 Thread Szczepan Faber
I tried all of them: mvn assembly:assembly -Dmaven.assembly.descriptorId=bin mvn assembly:assembly -Dmaven.assembly.descriptorId=jar-with-dependencies mvn assembly:assembly -Dmaven.assembly.descriptorId=src , but still: No assembly descriptors found. Do I need to download Pre-defined

Re: [M2] Is it possible to create an assembly w/o assembly.xml?

2006-04-05 Thread Valerio Schiavoni
no, they should be there... what version of mvn are you using ? On 4/5/06, Szczepan Faber [EMAIL PROTECTED] wrote: I tried all of them: mvn assembly:assembly -Dmaven.assembly.descriptorId=bin mvn assembly:assembly -Dmaven.assembly.descriptorId=jar-with-dependencies mvn assembly:assembly

Re: [M2] Is it possible to create an assembly w/o assembly.xml?

2006-04-05 Thread Valerio Schiavoni
try instead: mvn assembly:assembly -DdescriptorId=bin mvn assembly:assembly -DdescriptorId=jar-with-dependencies mvn assembly:assembly -DdescriptorId=src i think the site of the plugin is a bit out dated. On 4/5/06, Szczepan Faber [EMAIL PROTECTED] wrote: I tried all of them: mvn

Re: [M2] Is it possible to create an assembly w/o assembly.xml?

2006-04-05 Thread Jakub Pawlowicz
Hi Szczepan, Try removing the maven.assembly. prefix, eg. use this: mvn assembly:assembly -DdescriptorId=bin It works perfectly for me (maven 2.0.3). HTH Regards, Jakub On Wed, 5 Apr 2006 13:53:35 +0200, Szczepan Faber wrote I tried all of them: mvn assembly:assembly