Return-Path: Delivered-To: apmail-cocoon-dev-archive@www.apache.org Received: (qmail 16764 invoked from network); 18 May 2006 14:23:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 18 May 2006 14:23:16 -0000 Received: (qmail 24847 invoked by uid 500); 18 May 2006 14:23:14 -0000 Delivered-To: apmail-cocoon-dev-archive@cocoon.apache.org Received: (qmail 24763 invoked by uid 500); 18 May 2006 14:23:13 -0000 Mailing-List: contact dev-help@cocoon.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@cocoon.apache.org List-Id: Delivered-To: mailing list dev@cocoon.apache.org Received: (qmail 24752 invoked by uid 99); 18 May 2006 14:23:13 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 May 2006 07:23:13 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [165.98.167.227] (HELO ags01.agssa.net) (165.98.167.227) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 May 2006 07:23:12 -0700 Received-SPF: pass (ags01.agssa.net: 10.0.0.7 is whitelisted) receiver=ags01.agssa.net; client-ip=10.0.0.7; helo=[10.0.0.7]; envelope-from=agallardo@agssa.net; x-software=spfmilter 0.97 http://www.acme.com/software/spfmilter/ with libspf2-1.0.0; Received: from [10.0.0.7] (apoyo.agssa.net [10.0.0.7]) by ags01.agssa.net (8.13.6/8.13.6) with ESMTP id k4IEMlTI000301 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 18 May 2006 09:22:48 -0500 Message-ID: <446C8337.2020809@agssa.net> Date: Thu, 18 May 2006 09:22:47 -0500 From: Antonio Gallardo Organization: AG Software, S. A. User-Agent: Thunderbird 1.5.0.2 (X11/20060501) MIME-Version: 1.0 To: dev@cocoon.apache.org Subject: Re: How long for a full trunk build References: <446C79FA.2040504@apache.org> <446C7C28.9040904@dslextreme.com> In-Reply-To: <446C7C28.9040904@dslextreme.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (ags01.agssa.net [165.98.167.227]); Thu, 18 May 2006 09:22:48 -0500 (CDT) X-Virus-Scanned: ClamAV version 0.88.2, clamav-milter version 0.88.2 on agssa.net X-Virus-Status: Clean X-Spam-Checker-Version: SpamAssassin 3.0.5 (2005-11-28) on ags01.agssa.net X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED,AWL autolearn=ham version=3.0.5 X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Ralph Goers escribi�: > You should also consider building your own "local mirror". i.e., a > maven repository in your own local network. (This is not the same as > the local repository - it contains the stuff from your local builds). > However, I don't think Maven has an automated way to do this other > than to manually copy stuff from the local repository to the mirror. Here is another way, when you can place the jars into your own repo. It's manually too, but somehow I found it easier: Syntax: mvn deploy:deploy-file -DgroupId= \ -DartifactId= \ -Dversion= \ -Dpackaging= \ -Dfile= \ -DrepositoryId= \ -Durl= Sample uploading postgresql-8.1-405.jdbc3.jar: mvn deploy:deploy-file -DgroupId=postgresql \ -DartifactId=postgresql \ -Dversion=8.1-405.jdbc3 -Dpackaging=jar \ -Dfile="/home/agallardo/dev/lib/postgresql-8.1-405.jdbc3.jar" \ -DrepositoryId="my-own-repo" \ -Durl=scp://my.server.name/home/www/*maven* Best Regards, Antonio Gallardo. > > Reinhard Poetz wrote: >> Bertrand Delacretaz wrote: >>> On 5/18/06, Carsten Ziegeler wrote: >>> >>>> ...I had similar problems with m2 and now I'm always doing a "clean >>>> install" and most times remove my local repo as well... >>> >>> >>> Just curious, how much time do you need for a clean build of the >>> trunk, starting with an empty m2 repository? >>> >>> I've had several occurences where the whole thing was not finished >>> after more than an hour, using an usually fast DSL or similar >>> connection. For some reason, the repository downloads seem to be very >>> slow here. >> >> Not only for you. I also encounter problems with artifact downloads >> and I saw many comments by frustrated users on other ASF mailing >> lists. Maybe we should revive the idea setting up our own mirror with >> all dependencies that trunk needs. Andrew, is your offer still valid? >>