[Batchserver-cvs] batchserver build_framework.xml,1.4,1.5
Brought to you by:
suresh_pragada
From: Suresh <sur...@us...> - 2006-09-20 02:42:39
|
Update of /cvsroot/batchserver/batchserver In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv3399 Modified Files: build_framework.xml Log Message: no message Index: build_framework.xml =================================================================== RCS file: /cvsroot/batchserver/batchserver/build_framework.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** build_framework.xml 19 Sep 2006 22:52:20 -0000 1.4 --- build_framework.xml 20 Sep 2006 02:42:37 -0000 1.5 *************** *** 11,14 **** --- 11,15 ---- <property name="build.home" value="${basedir}/build"/> <property name="dist.home" value="${basedir}/dist"/> + <property name="bin.home" value="${basedir}/bin"/> <property name="docs.home" value="${basedir}/docs"/> <property name="src.home" value="${basedir}/src"/> *************** *** 67,70 **** --- 68,72 ---- <path refid="test.compile.classpath"/> <pathelement location="${build.home}/test"/> + <pathelement location="${conf.home}"/> </path> <property name="test.runtime.classpath" refid="test.runtime.classpath"/> *************** *** 162,166 **** </copy> <replace file="${dist.home}/conf/framework-config.xml" token="test-batch-config" value="batch-config"/> ! <!-- Create application JAR file --> --- 164,176 ---- </copy> <replace file="${dist.home}/conf/framework-config.xml" token="test-batch-config" value="batch-config"/> ! ! <mkdir dir="${dist.home}/bin/scripts"/> ! <copy todir="${dist.home}/bin/scripts"> ! <fileset dir="${bin.home}/dbscripts"> ! <include name="mysql/*.sql"/> ! <include name="oracle/*.sql"/> ! </fileset> ! </copy> ! <!-- Create application JAR file --> *************** *** 210,214 **** <echo message="Classpath for test compilation : ${test.compile.classpath}"/> ! <javac srcdir="${test.home}" destdir="${build.home}/test" debug="${compile.debug}" --- 220,224 ---- <echo message="Classpath for test compilation : ${test.compile.classpath}"/> ! <javac srcdir="${test.home}/org/jmonks/batch/framework" destdir="${build.home}/test" debug="${compile.debug}" *************** *** 230,234 **** <!-- ==================== Run Framework Test Suite Target ===================================== --> ! <target name="run-framework-test-suite" depends="test-compile" description="Run Framework Test Suite"> <!-- Make sure you have junit jar and junit ant jar in ant lib directory --> <echo message="Running Framework Test Suite"/> --- 240,244 ---- <!-- ==================== Run Framework Test Suite Target ===================================== --> ! <target name="run-framework-test-suite" depends="test-clean-compile" description="Run Framework Test Suite"> <!-- Make sure you have junit jar and junit ant jar in ant lib directory --> <echo message="Running Framework Test Suite"/> *************** *** 241,245 **** <formatter type="xml" usefile="true"/> <!-- <formatter type="plain" usefile="false"/> --> ! <test name="org.jmonks.batchserver.framework.FrameworkTestSuite" todir="${reports.home}"/> </junit> </target> --- 251,255 ---- <formatter type="xml" usefile="true"/> <!-- <formatter type="plain" usefile="false"/> --> ! <test name="org.jmonks.batch.framework.FrameworkTestSuite" todir="${reports.home}"/> </junit> </target> |