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