aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build.xml6
-rw-r--r--lib/README.txt56
-rw-r--r--lib/build/xmlunit-1.2.jarbin0 -> 96507 bytes
-rw-r--r--lib/build/xmlunit.LICENSE.txt36
4 files changed, 92 insertions, 6 deletions
diff --git a/build.xml b/build.xml
index a7fee3510..394f72c6a 100644
--- a/build.xml
+++ b/build.xml
@@ -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>
diff --git a/lib/README.txt b/lib/README.txt
index db0c2cdcf..e61bd8559 100644
--- a/lib/README.txt
+++ b/lib/README.txt
@@ -145,7 +145,7 @@ Please make sure you've read the license of each package.
Note: This is not the same as JAI! Only the ImageIO-compatible codecs
are packaged as "Image I/O Tools". The name may be misleading.
- - JAI (Java Advanced Imaging API)
+- JAI (Java Advanced Imaging API)
http://java.sun.com/products/java-media/jai
Java Research License and Java Distribution License (Check which one applies to you!)
@@ -186,8 +186,58 @@ Additional development-time dependencies
http://www.junit.org
Common Public License V1.0
-- XMLUnit (optional)
+- XMLUnit
- (not bundled, to be added to your Apache Ant installation)
+ lib/build/xmlunit-*.jar
+ (based on JUnit, used for testing)
http://xmlunit.sourceforge.net/
BSD style license
+
+- QDox
+
+ lib/build/qdox-*.jar
+ (used by the processing feedback mechanism, not needed at runtime)
+ http://qdox.codehaus.org/
+ Apache License V2.0
+
+
+
+Additional build-time dependencies
+-------------------------------------------
+
+These libraries are needed during the build only and
+not at runtime.
+
+- PMD
+
+ lib/build/pmd14-*.jar
+ (used for a code quality report)
+ http://pmd.sourceforge.net/
+ BSD style license
+
+- Jaxen
+
+ lib/build/jaxen-*.jar
+ (required by PMD)
+ http://jaxen.codehaus.org/
+ BSD style license
+
+- Retroweaver
+
+ (currently used only to verify Java 1.4 compatibility)
+ http://retroweaver.sourceforge.net
+ BSD style license
+
+- ASM
+
+ lib/build/asm-*.jar
+ (required by Retroweaver)
+ http://asm.objectweb.org
+ BSD style license
+
+- backport-util-concurrent
+
+ lib/build/backport-util-concurrent-*.jar
+ (required by Retroweaver)
+ http://backport-jsr166.sourceforge.net/
+ in public domain \ No newline at end of file
diff --git a/lib/build/xmlunit-1.2.jar b/lib/build/xmlunit-1.2.jar
new file mode 100644
index 000000000..e61df62b8
--- /dev/null
+++ b/lib/build/xmlunit-1.2.jar
Binary files differ
diff --git a/lib/build/xmlunit.LICENSE.txt b/lib/build/xmlunit.LICENSE.txt
new file mode 100644
index 000000000..7b4aa1bd8
--- /dev/null
+++ b/lib/build/xmlunit.LICENSE.txt
@@ -0,0 +1,36 @@
+/*
+******************************************************************
+Copyright (c) 2001-2007, Jeff Martin, Tim Bacon
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above
+ copyright notice, this list of conditions and the following
+ disclaimer in the documentation and/or other materials provided
+ with the distribution.
+ * Neither the name of the xmlunit.sourceforge.net nor the names
+ of its contributors may be used to endorse or promote products
+ derived from this software without specific prior written
+ permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
+
+******************************************************************
+*/
+