[Batchserver-cvs] batchserver build_io.xml,1.1,1.2
Brought to you by:
suresh_pragada
From: Suresh <sur...@us...> - 2006-06-13 04:02:51
|
Update of /cvsroot/batchserver/batchserver In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29973 Modified Files: build_io.xml Log Message: no message Index: build_io.xml =================================================================== RCS file: /cvsroot/batchserver/batchserver/build_io.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** build_io.xml 9 Jun 2006 03:57:50 -0000 1.1 --- build_io.xml 13 Jun 2006 04:02:49 -0000 1.2 *************** *** 35,39 **** <pathelement location="${lib.home}/xml/apache/resolver_2.7.1.jar"/> <pathelement location="${lib.home}/xml/apache/xerces_impl_2.7.1.jar"/> - <pathelement location="${lib.home}/stax/some.jar"/> <pathelement location="${lib.home}/stax/stax_api_1.0.zip"/> <pathelement location="${lib.home}/stax/ri/stax_impl_1.2.zip"/> --- 35,38 ---- *************** *** 76,86 **** --- 75,106 ---- <target name="dist" depends="source-clean,source-compile,javadoc" description="Create binary distribution"> + <!-- Copy documentation subdirectories --> <delete dir="${dist.home}"/> <mkdir dir="${dist.home}"/> + <mkdir dir="${dist.home}/docs"/> <copy todir="${dist.home}/docs"> <fileset dir="${docs.home}"/> </copy> + + <mkdir dir="${dist.home}/lib"/> + <copy todir="${dist.home}/lib"> + <fileset dir="${lib.home}"> + <include name="xml/xml_apis.jar"/> + <include name="xml/apache/resolver_2.7.1.jar"/> + <include name="xml/apache/xerces_impl_2.7.1.jar"/> + <include name="stax/ri/stax_impl_1.2.zip"/> + <include name="stax/stax_api_1.0.zip"/> + <include name="log4j/log4j_1.2.13.jar"/> + </fileset> + </copy> + + <mkdir dir="${dist.home}/src"/> + <copy todir="${dist.home}/src"> + <fileset dir="${src.home}"> + <include name="org/jmonks/batchserver/io/**.java"/> + </fileset> + </copy> <!-- Create application JAR file --> |