Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 33874 invoked from network); 13 Feb 2007 07:51:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Feb 2007 07:51:38 -0000 Received: (qmail 54142 invoked by uid 500); 13 Feb 2007 07:51:45 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 54004 invoked by uid 500); 13 Feb 2007 07:51:45 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 53993 invoked by uid 99); 13 Feb 2007 07:51:45 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Feb 2007 23:51:45 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Feb 2007 23:51:37 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id F269E1A981A; Mon, 12 Feb 2007 23:51:16 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r506896 - /geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/Library.groovy Date: Tue, 13 Feb 2007 07:51:16 -0000 To: scm@geronimo.apache.org From: jdillon@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070213075116.F269E1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jdillon Date: Mon Feb 12 23:51:16 2007 New Revision: 506896 URL: http://svn.apache.org/viewvc?view=rev&rev=506896 Log: Test to see how slow the ant-based copy actually is Modified: geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/Library.groovy Modified: geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/Library.groovy URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/Library.groovy?view=diff&rev=506896&r1=506895&r2=506896 ============================================================================== --- geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/Library.groovy (original) +++ geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/system/library/Library.groovy Mon Feb 12 23:51:16 2007 @@ -123,7 +123,15 @@ // and Ant's mechanism can take forever // - exec('cp', [ '-r', "$baseDir/", targetDir ]) + // + // TESTING: See how bad Ant's copy really is... + // + // exec('cp', [ '-r', "$baseDir/", targetDir ]) + ant.copy(todir: targetDir) { + fileset(dir: baseDir, defaultexcludes: false) { + include(name: '**') + } + } // If we have some perms, then set them if (perms) {