Re: deploy with uniqueVersion = false not working

2007-09-05 Thread Farrukh Najmi
Thanks again Maria. I looked into the code for the maven-deploy-plugin and it does not seem to be a trivial matter for someone unfamiliar with the code base to fix this. So here is my plea to the maven-deploy-plugin dev team Please, please, provide a SNAPSHOT release that addresses

deploy with uniqueVersion = false not working

2007-08-31 Thread Farrukh Najmi
Hello, I have a multi-module maven2 project. I am trying to deploy my modules to a remote m2 repo without including the timestamp suffix in file names. I use maven-deploy-plugin and the deploy phase using the command: mvn deploy -DuniqueVersion=false on the top level project. This is

Re: deploy with uniqueVersion = false not working

2007-08-31 Thread Maria Odea Ching
Hi Farrukh, The uniqueVersion is not a parameter of the deploy:deploy goal (which is what's being executed when you do 'mvn deploy'). This parameter is for the deploy:deploy-file goal. And since you did 'mvn deploy', the uniqueVersion parameter is ignored.. There's an open issue for this

Re: deploy with uniqueVersion = false not working

2007-08-31 Thread Farrukh Najmi
Maria Odea Ching wrote: Hi Farrukh, The uniqueVersion is not a parameter of the deploy:deploy goal (which is what's being executed when you do 'mvn deploy'). This parameter is for the deploy:deploy-file goal. And since you did 'mvn deploy', the uniqueVersion parameter is ignored.. There's

Re: deploy with uniqueVersion = false not working

2007-08-31 Thread Maria Odea Ching
Np :-) I don't think it's already fixed yet.. the issue is still open. -Deng Farrukh Najmi wrote: Maria Odea Ching wrote: Hi Farrukh, The uniqueVersion is not a parameter of the deploy:deploy goal (which is what's being executed when you do 'mvn deploy'). This parameter is for the