move testng taskdef into test-compile.

git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@868 af16638f-c34d-0410-8cfa-b39d5352b314
This commit is contained in:
Richard Alam 2009-01-21 16:31:16 +00:00
parent 7dff6bddc7
commit c5c3032ec6

View File

@ -95,9 +95,6 @@
<pathelement path="${java.class.path}"/>
</path>
<taskdef name="testng" classpathref="compile.classpath"
classname="org.testng.TestNGAntTask" />
<!-- Build Targets -->
<target name="prepare" depends="clean" description="Setup directories for build">
<mkdir dir="${webapps.build.dir}"/>
@ -347,6 +344,8 @@
srcdir="test">
<classpath refid="test.compile.classpath"/>
</javac>
<taskdef name="testng" classpathref="compile.classpath"
classname="org.testng.TestNGAntTask" />
</target>
<target name="test-ng" depends="test-compile">