brekke 02/02/12 21:01:22 Modified: . build.xml Log: Small patch inspired by the patch posted to the dev list by Daniel Rall. This should fix the failing gump build for t2. It also updated the source what was being put into the archive with the correct build scripts. Both the turbine source and the test cases are provided with the scripts to build and run them. Revision Changes Path 1.8 +20 -10 jakarta-turbine-2/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-turbine-2/build.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- build.xml 9 Feb 2002 02:00:51 -0000 1.7 +++ build.xml 13 Feb 2002 05:01:22 -0000 1.8 @@ -295,10 +295,18 @@ <!-- ================================================================== --> <target name="package" depends="jar,javadocs"> <mkdir dir="${final.dir}"/> - <mkdir dir="${final.dir}/src/java"/> - - <copy todir="${final.dir}/src/java"> - <fileset dir="${build.dir}/src"/> + <mkdir dir="${final.dir}/src"/> + <mkdir dir="${final.dir}/conf"/> + + <copy file="${conf.dir}/TurbineResources.properties" + tofile="${final.dir}/conf/TurbineResources.properties"/> + + <copy todir="${final.dir}/src"> + <fileset dir="${src.dir}"> + <exclude name="**/CVS/*"/> + <exclude name="tlds/**"/> + <exclude name="sql/**"/> + </fileset> </copy> <copy todir="${final.dir}/docs"> @@ -307,12 +315,14 @@ </fileset> </copy> - <copy todir="${final.dir}/build"> - <fileset dir="build"/> - </copy> - - <copy todir="${final.dir}/lib"> - <fileset dir="lib"/> + <copy todir="${final.dir}"> + <fileset dir="."> + <include name="build*.xml"/> + <include name="deps.list"/> + <include name="default.properties"/> + <include name="build.properties.sample"/> + <include name="tdk.jar"/> + </fileset> </copy> <copy file="${build.dir}/${final.name}.jar"
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>