diff options
author | Jeremias Maerki <jeremias@apache.org> | 2009-01-28 13:30:22 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2009-01-28 13:30:22 +0000 |
commit | ddf7f2909b67f8e36fb0030ca2ecdedc17e48e40 (patch) | |
tree | 95f9113f03fe014474582c1521858a56a392152e /build.xml | |
parent | b050b663fd1b42087182726f9127c6be9462d252 (diff) | |
download | xmlgraphics-fop-ddf7f2909b67f8e36fb0030ca2ecdedc17e48e40.tar.gz xmlgraphics-fop-ddf7f2909b67f8e36fb0030ca2ecdedc17e48e40.zip |
Updated dependency list.
Added XMLUnit 1.2 as we've already got many other build-only third-parties in lib/build and adding XMLUnit makes FOP easier to set up in an IDE.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@738478 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -217,7 +217,7 @@ list of possible build targets. <echo message="${jce.message}"/> <available property="jdk14.present" classname="java.lang.CharSequence"/> <fail message="${Name} requires at least Java 1.4!" unless="jdk14.present"/> - <available property="junit.present" classname="junit.framework.TestCase" classpathref="libs-build-classpath"/> + <available property="junit.present" classname="junit.framework.TestCase" classpathref="libs-build-tools-classpath"/> <condition property="junit.message" value="JUnit Support PRESENT"> <equals arg1="${junit.present}" arg2="true"/> </condition> @@ -229,7 +229,7 @@ list of possible build targets. <echo message="${junit.message}"/> <condition property="xmlunit.present"> <and> - <available classname="org.custommonkey.xmlunit.XMLTestCase" classpathref="libs-build-classpath"/> + <available classname="org.custommonkey.xmlunit.XMLTestCase" classpathref="libs-build-tools-classpath"/> <isset property="junit.present"/> </and> </condition> @@ -909,7 +909,7 @@ list of possible build targets. <formatter type="xml" usefile="true"/> <classpath> <pathelement location="${build.dir}/test-classes"/> - <path refid="libs-build-classpath"/> + <path refid="libs-build-tools-classpath"/> <fileset dir="build"> <include name="fop.jar"/> </fileset> |