summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormattinger <[email protected]>2007-08-28 04:52:05 +0000
committermattinger <[email protected]>2007-08-28 04:52:05 +0000
commit933512f12c9208d078782b74fc9fd53a1cccba66 (patch)
tree99119b677d47cbb7bc10ec08707206a59a8f84a1
parent6fda55419e720867df9428a7451e5a891ee5c305 (diff)
Fixing problems with classpath in verifydesign test
git-svn-id: file:///home/sven/projects/JOGL/temp/ant-contrib/svn/ant-contrib-code/ant-contrib/trunk@143 32d7a393-a5a9-423c-abd3-5d954feb1f2f
-rw-r--r--test/resources/design/verifydesign.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/resources/design/verifydesign.xml b/test/resources/design/verifydesign.xml
index 53d7d17..48b16f1 100644
--- a/test/resources/design/verifydesign.xml
+++ b/test/resources/design/verifydesign.xml
@@ -11,7 +11,10 @@
<property name="webxml" value="web.xml"/>
<taskdef resource="net/sf/antcontrib/antcontrib.properties">
- <classpath location="${antcontrib.jar}"/>
+ <classpath>
+ <pathelement location="${antcontrib.jar}"/>
+ <pathelement path="${test.classpath}" />
+ </classpath>
</taskdef>
<target name="cleanup">
@@ -19,7 +22,7 @@
</target>
<target name="init">
- <mkdir dir="${jardir}"/>
+ <mkdir dir="${jardir}"/>
</target>
<target name="templateTest">