curcuru 02/03/26 11:57:27
Modified: test build.xml
Log:
Simple export target added for users who only need the .jar and the
actual sources that were compiled therein without any other files
Revision Changes Path
1.42 +12 -0 xml-xalan/test/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-xalan/test/build.xml,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- build.xml 6 Mar 2002 21:59:54 -0000 1.41
+++ build.xml 26 Mar 2002 19:57:27 -0000 1.42
@@ -972,6 +972,18 @@
</target>
+ <target name="export" depends="jar"
+ description="Build a very simple export of just the important
sources">
+ <!-- Zip only the sources used in the plain 'jar' target -->
+ <zip zipfile="${test.build.dir}/testxsl-src-${DSTAMP}.zip" >
+ <zipfileset dir="java">
+ <include name="src/"/>
+ <!-- Don't copy qetesttest due to JUnit dependency -->
+ <exclude name="src/${test.root}qetesttest/"/>
+ </zipfileset>
+ </zip>
+
+ </target>
<!-- ==================================================================
-->
<!-- Special: Targets specific to XSLTC which requires extra .jars
-->
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]