Show build.xml syntax highlighted
<!--
File: FLICKRDESKTOP CONFIGURATION AND RUN SCRIPT 1.0
Author: Xueling Shu
Usage: Run 'ant' at the command line to print the usage information.
To use this script, the first thing to do is to download the FlickrDesktop source from CVS.
To build,run and test,you can enter on the command line:
ant build (compile source code)
ant run (run the application)
ant superrun (compile and run the application)
ant unittest (run all the junit tests)
ant fittest (run all the fit tests from fitnesse)
ant supertest (run both junit and fit tests)
ant packageApp (create an executable jar to run FlickrDesktop)
-->
<project default="usage" basedir=".">
<property name="src" value="src"/>
<property name="unitTestSrc" value="tests/ca/ucalgary/cpsc/ebe/fitClipse/tests/junit"/>
<property name="bin" value="bin"/>
<property name="unitTestBin" value="${bin}/unitTests"/>
<property name="junitReports" value="./junitReports"/>
<!-- <path id="path.fitClipse">
<fileset dir=".">
<include name="**/*.jar" />
</fileset>
</path> -->
<target name="usage">
<echo level="info" message="Required ANT 1.6.5+"/>
<echo level="info" message=" "/>
<echo level="info" message="Usage:"/>
<echo level="info" message="ant [target] [options]"/>
<echo level="info" message=" "/>
<echo level="info" message="Targets:"/>
<echo level="info" message=" usage Print this help message"/>
<echo level="info" message=" build Compile source"/>
<echo level="info" message=" unittest Run junit tests"/>
<!--<echo level="info" message=" fittest Run all the fitnesse tests"/>
-->
<echo level="info" message=" "/>
</target>
</project>
See more files for this project here