diff options
Diffstat (limited to 'testing-client/build.xml')
-rw-r--r-- | testing-client/build.xml | 35 |
1 files changed, 3 insertions, 32 deletions
diff --git a/testing-client/build.xml b/testing-client/build.xml index 8f9e8d4ad..171c92589 100644 --- a/testing-client/build.xml +++ b/testing-client/build.xml @@ -1,35 +1,6 @@ <?xml version="1.0"?> -<project name="testing-client" default="all" basedir="."> - - <import file="../build/build-common.xml"/> - <import file="../bridge/build.xml"/> - - <path id="testing-client.test.src.path"> - <fileset dir="${basedir}/../lib"> - <include name="junit/*.jar"/> - </fileset> - <path refid="testing-client.src.path"/> - </path> - - <path id="testing-client.src.path"> - <pathelement path="../bridge/bin"/> - <pathelement path="../util/bin"/> - </path> - - <target name="compile" depends="init, - bridge.compile, - util.compile"> - <srccompile project="testing-client" path="testing-client.src.path"/> - </target> - - <target name="test:compile" depends="compile"> - <testcompile project="testing-client" path="testing-client.test.src.path"/> - </target> - - <target name="test" depends="test:compile"> - <testrun project="testing-client" path="testing-client.test.src.path" suite="TestingClientModuleTests"/> - </target> - - +<!-- see ../build/*.html for explanation --> +<project name="testing-client" default="test" basedir="."> + <import file="${basedir}/../build/build.xml"/> </project> |