[Batchserver-cvs] batchserver build_framework.xml, 1.3, 1.4 build_io.xml, 1.6, 1.7
Brought to you by:
suresh_pragada
From: Suresh <sur...@us...> - 2006-09-19 22:52:24
|
Update of /cvsroot/batchserver/batchserver In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv3573 Modified Files: build_framework.xml build_io.xml Log Message: no message Index: build_io.xml =================================================================== RCS file: /cvsroot/batchserver/batchserver/build_io.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** build_io.xml 15 Sep 2006 19:54:41 -0000 1.6 --- build_io.xml 19 Sep 2006 22:52:20 -0000 1.7 *************** *** 86,90 **** <mkdir dir="${dist.home}/lib"/> ! <copy todir="${dist.home}/lib"> <fileset dir="${lib.home}"> <include name="xml/xml_apis.jar"/> --- 86,90 ---- <mkdir dir="${dist.home}/lib"/> ! <copy todir="${dist.home}/lib" flatten="true"> <fileset dir="${lib.home}"> <include name="xml/xml_apis.jar"/> *************** *** 128,132 **** <javadoc sourcepath="${src.home}" destdir="${docs.home}" ! packagenames="org/jmonks/batch/io,org/jmonks/batch/io/flat,org/jmonks/batch/io/xml" author="true" version="true" --- 128,132 ---- <javadoc sourcepath="${src.home}" destdir="${docs.home}" ! packagenames="org/jmonks/batch/io/*" author="true" version="true" Index: build_framework.xml =================================================================== RCS file: /cvsroot/batchserver/batchserver/build_framework.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** build_framework.xml 19 Sep 2006 17:07:44 -0000 1.3 --- build_framework.xml 19 Sep 2006 22:52:20 -0000 1.4 *************** *** 13,16 **** --- 13,17 ---- <property name="docs.home" value="${basedir}/docs"/> <property name="src.home" value="${basedir}/src"/> + <property name="conf.home" value="${basedir}/conf"/> <property name="lib.home" value="${basedir}/lib"/> <property name="test.home" value="${basedir}/test"/> *************** *** 103,107 **** </target> ! <!-- ==================== Test-Clean-Compile Target ====================================== --> --- 104,194 ---- </target> ! ! <!-- ==================== Dist Target ===================================== --> ! ! <target name="dist" depends="source-clean-compile,javadoc" description="Create binary distribution"> ! ! <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" flatten="true"> ! <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"/> ! <include name="concurrent/concurrent_1.3.4.jar"/> ! <include name="db/db4o/db4o_5.0.jar"/> ! <include name="jdbc/mysql/mysql_jdbc_driver_3.1.13.jar"/> ! <include name="jdbc/oracle/ojdbc14.jar"/> ! <include name="jmx/ri/jmxri_1.2.1.jar"/> ! <include name="jmx/ri/jmxremote_1.0.1_04.jar"/> ! <include name="jmx/ri/jmxremote_optional1.0.1_04.jar"/> ! <include name="jmx/ri/rmissl_1.0.1_04.jar"/> ! </fileset> ! </copy> ! ! <mkdir dir="${dist.home}/src"/> ! <copy todir="${dist.home}/src"> ! <fileset dir="${src.home}"> ! <include name="org/jmonks/batch/framework/*.java"/> ! <include name="org/jmonks/batch/framework/config/*.java"/> ! <include name="org/jmonks/batch/framework/config/xml/*.java"/> ! <include name="org/jmonks/batch/framework/config/db/*.java"/> ! <include name="org/jmonks/batch/framework/repository/db4o/*.java"/> ! <include name="org/jmonks/batch/framework/repository/jdbc/*.java"/> ! <include name="org/jmonks/batch/framework/controller/basic/*.java"/> ! <include name="org/jmonks/batch/framework/controller/pool/*.java"/> ! <include name="org/jmonks/batch/framework/management/*.java"/> ! <include name="org/jmonks/batch/framework/management/jmxmp/*.java"/> ! <include name="org/jmonks/batch/framework/util/*.java"/> ! </fileset> ! </copy> ! ! <mkdir dir="${dist.home}/conf"/> ! <copy todir="${dist.home}/conf"> ! <fileset dir="${conf.home}"> ! <include name="batch-config.xml"/> ! <include name="framework-config.xml"/> ! </fileset> ! </copy> ! <replace file="${dist.home}/conf/framework-config.xml" token="test-batch-config" value="batch-config"/> ! ! ! <!-- Create application JAR file --> ! <jar jarfile="${dist.home}/${app.name}_${app.version}.jar" ! basedir="${build.home}/src"> ! <manifest> ! <attribute name="Implementation-Title" value="Batch Framework"/> ! <attribute name="Implementation-Version" value="${app.version}"/> ! <attribute name="Implementation-Vendor" value="JMonks(http://jmonks.org)"/> ! </manifest> ! </jar> ! ! </target> ! ! <!-- ==================== Javadoc Target ================================== --> ! ! <target name="javadoc" description="Create Javadoc API documentation"> ! <delete dir="${docs.home}"/> ! <mkdir dir="${docs.home}"/> ! <javadoc sourcepath="${src.home}" ! destdir="${docs.home}" ! packagenames="org/jmonks/batch/framework/*" ! author="true" ! version="true" ! use="true"> ! <classpath refid="compile.classpath"/> ! </javadoc> ! </target> ! <!-- ==================== Test-Clean-Compile Target ====================================== --> *************** *** 199,231 **** </target> - <!-- ==================== Dist Target ===================================== --> - - <target name="dist" depends="source-clean-compile,javadoc" description="Create binary distribution"> - <!-- Copy documentation subdirectories --> - <mkdir dir="${dist.home}/docs"/> - <copy todir="${dist.home}/docs"> - <fileset dir="${docs.home}"/> - </copy> - - <!-- Create application JAR file --> - <jar jarfile="${dist.home}/${app.name}-${app.version}.jar" - basedir="${build.home}/src"/> - </target> - - <!-- ==================== Javadoc Target ================================== --> - - <target name="javadoc" depends="source-clean-compile" description="Create Javadoc API documentation"> - <delete dir="${docs.home}"/> - <mkdir dir="${docs.home}"/> - <javadoc sourcepath="${src.home}" - destdir="${docs.home}" - packagenames="*" - author="true" - version="true" - use="true"> - <classpath refid="compile.classpath"/> - </javadoc> - </target> - </project> --- 286,289 ---- |