http://cvs.apache.org/maven-snapshot-repository
This is a Maven 2.x repository for deployment of development and snapshot Apache releases.
Please follow these rules when deploying to this repository:
- never deploy releases or non-Apache libraries here
- prune old snapshots when they are out of date
This repository will not be synced automatically to Ibiblio and the Maven mirrors.
IMPORTANT:
Permissions should be
775 for directories
644 for files
Which can be done in Maven 2 settings.xml with
apache.releases
775
644
apache.snapshots
775
644
Due to a bug in Maven (http://jira.codehaus.org/browse/MDEPLOY-28) maven-metadata.* files need to have 664 permissions
Run these commands to fix the permissions of your files after deployment:
snapshots:
find /www/people.apache.org/repo/m2-snapshot-repository ! -perm 775 -type d -user ${USER} -exec chmod 775 {} \;
find /www/people.apache.org/repo/m2-snapshot-repository ! -perm 664 -iname maven-metadata.xml* -user ${USER} -exec chmod 664 {} \;
find /www/people.apache.org/repo/m2-snapshot-repository ! -perm 644 ! -iname maven-metadata.xml* -type f -user ${USER} -exec chmod 644 {} \;
releases:
find /www/www.apache.org/dist/maven-repository ! -perm 775 -type d -user ${USER} -exec chmod 775 {} \;
find /www/www.apache.org/dist/maven-repository ! -perm 664 -iname maven-metadata.xml* -user ${USER} -exec chmod 664 {} \;
find /www/www.apache.org/dist/maven-repository ! -perm 644 ! -iname maven-metadata.xml* -type f -user ${USER} -exec chmod 644 {} \;