Re: Deployment of maven-pmd-plugin:2.4-SNAPSHOT

2008-04-19 Thread Benjamin Bentmann
Hervé Boutemy wrote: copy the files to new ones and remove old ones Doh, I could have known: WAGON-19, MDEPLOY-28 I just did it on pmd plugin 2.4-SNAPSHOT: you can deploy the snapshot now Thanks Hervé, deployment worked fine. Benjamin

Re: Deployment of maven-pmd-plugin:2.4-SNAPSHOT

2008-04-19 Thread Hervé BOUTEMY
since the problem is with maven-metadata.xml* files, not parent directory, there is a Unix trick to fix the permissions without waiting for the owner to do it: copy the files to new ones and remove old ones for f in maven-metadata.xml*; do mv $f $f~; cp $f~ $f; chmod g+w $f; rm -f $f~; done I

RE: Deployment of maven-pmd-plugin:2.4-SNAPSHOT

2008-04-18 Thread Brian E. Fox
You'll have to check who owns them and ask them to run the fix-permissions script in the root of the m2-snap repo. -Original Message- From: Benjamin Bentmann [mailto:[EMAIL PROTECTED] Sent: Friday, April 18, 2008 7:09 PM To: Maven Developers List Subject: Deployment of maven-pmd-plugin:2.