Re: Removing interim dated builds from /www/www.apache.org/dist/java-repository

2005-01-07 Thread Brett Porter
Hi Mark, I think this is just a miscommunication, as what you have said below is what all the projects do 1.) In Maven project.properties, Referencing the remote repository maven.repo.remote=http://www.apache.org/dist/java-repository/ 2.) In Maven project.properties, Referencing a

Re: Removing interim dated builds from /www/www.apache.org/dist/java-repository

2005-01-07 Thread Mark R. Diggory
Thanks Brett, I'm just concerned as well, that there may be distributions out on Apache the reference the ASF Repository jars directly instead of using Ibiblio or dyncloser.cgi. If those projects have been shortsighted in releasing distros's that have dependencies on interim releases in

Re: Removing interim dated builds from /www/www.apache.org/dist/java-repository

2005-01-07 Thread Dain Sundstrom
On Jan 7, 2005, at 6:56 AM, Mark R. Diggory wrote: Dain Sundstrom wrote: I would hope so. These projects have a trivial or non existent set of dependencies. Take a look at a big project using maven and you will see that they use lots of repos, because ibiblio tends not to have

Re: Removing interim dated builds from /www/www.apache.org/dist/java-repository

2005-01-07 Thread Mark R. Diggory
Dain Sundstrom wrote: On Jan 7, 2005, at 6:56 AM, Mark R. Diggory wrote: Heres a really good example of a reference we promote usage of: jakarta-commons/chain/project.properties,v: maven.repo.central.directory=/www/www.apache.org/dist/java-repository maven.repo.central.directory is property

Re: Removing interim dated builds from /www/www.apache.org/dist/java-repository

2005-01-05 Thread Dain Sundstrom
On Jan 4, 2005, at 8:34 PM, Mark R. Diggory wrote: Please excuse the cross post. I'm planning to run some commands on the java-repository to remove interim builds and SNAPSHOTS. Specifically, I'll be running: If you remove SNAPSHOTS, it not only can it break head branches of projects, it can

Re: Removing interim dated builds from /www/www.apache.org/dist/java-repository

2005-01-05 Thread Mark R. Diggory
Dain Sundstrom wrote: On Jan 5, 2005, at 10:26 AM, Mark R. Diggory wrote: Thanks for your response Dain, Dain Sundstrom wrote: On Jan 4, 2005, at 8:34 PM, Mark R. Diggory wrote: Please excuse the cross post. I'm planning to run some commands on the java-repository to remove interim builds and

Removing interim dated builds from /www/www.apache.org/dist/java-repository

2005-01-04 Thread Mark R. Diggory
Please excuse the cross post. I'm planning to run some commands on the java-repository to remove interim builds and SNAPSHOTS. Specifically, I'll be running: #!/bin/sh LOCATION=/www/www.apache.org/dist/java-repository find ${LOCATION} -name '*200[0-4]*' | while read j; do rm -f $j; done