This build.xml file is used to build, test and run a suite of acceptance tests.
<project name="MyAcceptanceTest" default="run" basedir="."> <property file="build.properties" /> <property file="${user.home}/build.properties" /> <property name="src" value="src" description="base directory production source" /> <property name="src.test" value="test" description="base directory test source" /> <property name="build.root" value="build" description="base directory of build output" /> <property name="build.dir" value="${build.root}/prod" description="output of Ant compilation for production code" /> <property name="build.test.dir" value="${build.root}/test" description="output of Ant compilation for test code" /> <property name="testlib.dir" value="../common/lib.test" description="location of test libraries" /> <!-- In order to run the junit tests under Ant, we want the junit.jar on the classpath used by Ant. The easiest way to do this is to copy it into the Ant lib directory. To run this build script within eclipse, you need to use Window | Preferences | Ant | runtime | classpath in order to put junit.jar on the Ant classpath. See http://www.ryanlowe.ca/blog/archives/001038_junit_ant_task_doesnt_work_in_eclipse.php --> <property name="junit.jar" value="${ant.library.dir}/junit.jar" description="location of jUnit library" /> <property name="compile.debug" value="false" /> <property name="compile.deprecation" value="true" /> <property name="compile.optimize" value="true" /> <path id="compile.classpath"> <!-- pathelement location="${java.home}/lib/tools.jar" / --> <pathelement location="${junit.jar}" /> <fileset dir="${testlib.dir}"> <include name="*.zip" /> <include name="*.jar" /> </fileset> </path> <path id="run.classpath" > <path refid="compile.classpath"/> <pathelement location="${build.dir}" /> </path> <path id="compile.test.classpath" > <path refid="run.classpath"/> </path> <path id="run.test.classpath" > <path refid="compile.test.classpath"/> <pathelement location="${build.test.dir}" /> </path> <target name="echoproperties"> <echoproperties/> </target> <target name="clean" description="Delete artifacts of previous builds"> <delete dir="${build.root}" /> </target> <target name="compile.prepare"> <mkdir dir="${build.dir}" /> </target> <target name="compile" depends="compile.prepare" description="Java compilation"> <javac destdir="${build.dir}" debug="${compile.debug}" deprecation="${compile.deprecation}" optimize="${compile.optimize}"> <classpath refid="compile.classpath" /> <src path="${src}" /> </javac> </target> <target name="run" description="Run the tests" > <junit printsummary="withOutAndErr"> <classpath refid="run.classpath" /> <!-- formatter type="plain" usefile="false" / --> <batchtest> <fileset dir="${src}"> <include name="**/*Test.java"/> </fileset> </batchtest> </junit> </target> <target name="compile.test.prepare"> <mkdir dir="${build.test.dir}" /> </target> <target name="compile.test" depends="compile.test.prepare,compile" description="Java compilation"> <javac destdir="${build.test.dir}" debug="${compile.debug}" deprecation="${compile.deprecation}" optimize="${compile.optimize}"> <classpath refid="compile.test.classpath" /> <src path="${src.test}" /> </javac> </target> <target name="run.test" description="Test the test code" > <junit printsummary="withOutAndErr"> <classpath refid="run.test.classpath" /> <!-- formatter type="plain" usefile="false" / --> <batchtest> <fileset dir="${src.test}"> <include name="**/*Test.java"/> </fileset> </batchtest> </junit> </target> </project>