You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2007/01/28 01:03:28 UTC

svn commit: r500703 - /geronimo/sandbox/build-support/harness/trunk/harness.xml

Author: jdillon
Date: Sat Jan 27 16:03:27 2007
New Revision: 500703

URL: http://svn.apache.org/viewvc?view=rev&rev=500703
Log:
Download the library when setting up

Modified:
    geronimo/sandbox/build-support/harness/trunk/harness.xml

Modified: geronimo/sandbox/build-support/harness/trunk/harness.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/build-support/harness/trunk/harness.xml?view=diff&rev=500703&r1=500702&r2=500703
==============================================================================
--- geronimo/sandbox/build-support/harness/trunk/harness.xml (original)
+++ geronimo/sandbox/build-support/harness/trunk/harness.xml Sat Jan 27 16:03:27 2007
@@ -23,6 +23,15 @@
 <project default="bootstrap" basedir=".">
     
     <target name="setup">
+        <!-- Download the script library -->
+        <exec executable="svn" dir="${basedir}">
+            <arg value="export"/>
+            <arg value="--non-interactive"/>
+            <arg value="https://svn.apache.org/repos/asf/geronimo/sandbox/build-support/library/trunk/"/>
+            <arg value="library"/>
+        </exec>
+        
+        <!-- Force scripts to be executable -->
         <chmod perm="u+x">
             <fileset dir="bin">
                 <include name="*"/>
@@ -49,6 +58,7 @@
         <groovy>
             <classpath>
                 <pathelement location="${basedir}/lib"/>
+                <pathelement location="${basedir}/library"/>
             </classpath>
             
             buildharness.BuildHarness.bootstrap(this)