Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 16157 invoked from network); 18 Feb 2007 05:29:09 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 18 Feb 2007 05:29:09 -0000 Received: (qmail 3075 invoked by uid 500); 18 Feb 2007 05:29:17 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 2934 invoked by uid 500); 18 Feb 2007 05:29:16 -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 2923 invoked by uid 99); 18 Feb 2007 05:29:16 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 17 Feb 2007 21:29:16 -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; Sat, 17 Feb 2007 21:29:08 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 02C081A981A; Sat, 17 Feb 2007 21:28:47 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r508868 - /geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/Controller.groovy Date: Sun, 18 Feb 2007 05:28:46 -0000 To: scm@geronimo.apache.org From: jdillon@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070218052848.02C081A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jdillon Date: Sat Feb 17 21:28:39 2007 New Revision: 508868 URL: http://svn.apache.org/viewvc?view=rev&rev=508868 Log: Include ri server logs Modified: geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/Controller.groovy Modified: geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/Controller.groovy URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/Controller.groovy?view=diff&rev=508868&r1=508867&r2=508868 ============================================================================== --- geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/Controller.groovy (original) +++ geronimo/sandbox/build-support/libraries/system/1/groovy/gbuild/config/projects/Geronimo_CTS/Controller.groovy Sat Feb 17 21:28:39 2007 @@ -288,6 +288,14 @@ include(name: 'logs/**') include(name: 'javatest/**') } + + // If there are any RI logs, then include them too + def dir = new File('target/ri/domains/domain1/logs') + if (dir.exists()) { + zipfileset(dir: dir, prefix: 'rilogs') { + include(name: '**') + } + } } separator()