XMLUnit for Java.
XMLUnit compares a control XML document to a test document or the result of a transformation, validates documents, and compares the results of XPath expressions..
Here is the list of declaration for xmlunit. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <version>1.3</version> </dependency>
If you think this Maven repository POM file listing for xmlunit is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:BSD License
URL: http://xmlunit.svn.sourceforge.net/viewvc/*checkout*/xmlunit/trunk/xmlunit/LICENSE.txt.
The xmlunit-1.3 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 3.8.2 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 555 |
The following table lists the most popular artifacts which are depending on xmlunit-1.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Groovy | groovy 1.7.5 Groovy: A powerful, dynamic language for the JVM | 27 |
Groovy | groovy-all 1.7.4 Groovy: A powerful, dynamic language for the JVM | 6 |
Groovy | groovy-all 1.7.8 Groovy: A powerful, dynamic language for the JVM | 11 |
Groovy | groovy-all 1.8.5 Groovy: A powerful, dynamic language for the JVM | 5 |
Groovy | groovy 1.7.0 Groovy: A powerful, dynamic language for the JVM | 8 |
Groovy | groovy-all 1.7.10 Groovy: A powerful, dynamic language for the JVM | 9 |
Groovy | groovy 1.8.9 Groovy: A powerful, dynamic language for the JVM | 5 |
Spring | spring-test 3.2.9.RELEASE Spring TestContext Framework | 7 |
Groovy | groovy 1.7.3 Groovy: A powerful, dynamic language for the JVM | 7 |
Groovy | groovy-all 2.0.0-beta-2 Groovy: A powerful, dynamic language for the JVM | 8 |
Groovy | groovy 1.7.9 Groovy: A powerful, dynamic language for the JVM | 33 |
Groovy | groovy 1.7.10 Groovy: A powerful, dynamic language for the JVM | 5 |
Spring | spring-test 3.2.8.RELEASE Spring TestContext Framework | 37 |
Groovy | groovy 1.8.8 Groovy: A powerful, dynamic language for the JVM | 5 |
Build | maven-shade-plugin 2.2 Repackages the project classes together with their dependencies into a single uber-jar, optionally renaming classes or removing unused classes. | 15 |
Groovy | groovy 1.7.8 Groovy: A powerful, dynamic language for the JVM | 40 |
Groovy | groovy-all 1.8.9 Groovy: A powerful, dynamic language for the JVM | 35 |
Groovy | groovy-all 1.8.8 Groovy: A powerful, dynamic language for the JVM | 11 |
Build | maven-model-builder 3.0.5 The effective model builder, with inheritance, profile activation, interpolation, ... | 16 |
Groovy | groovy-all 1.8.6 Groovy: A powerful, dynamic language for the JVM | 61 |
Groovy | groovy-all 1.7.0 Groovy: A powerful, dynamic language for the JVM | 17 |
Spring | spring-test 4.0.2.RELEASE Spring TestContext Framework | 15 |
Groovy | groovy-all 2.0.0-beta-1 Groovy: A powerful, dynamic language for the JVM | 5 |
The following packages are defined in the xmlunit-1.3.jar
org.custommonkey.xmlunit org.custommonkey.xmlunit.examples org.custommonkey.xmlunit.exceptions org.custommonkey.xmlunit.jaxp13 org.custommonkey.xmlunit.util
Here is the content of the POM file.
<?xml version="1.0"?> <!-- Copyright (c) 2007-2008, 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. --> <!-- This POM is not usable as means to build XMLUnit with Maven2, it is a minimal POM to allow XMLUnit's artifacts to be added to a Maven repository. --> <project> <modelVersion>4.0.0</modelVersion> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <packaging>jar</packaging> <name>XMLUnit for Java</name> <version>1.3</version> <url>http://xmlunit.sourceforge.net/</url> <description>XMLUnit compares a control XML document to a test document or the result of a transformation, validates documents, and compares the results of XPath expressions.</description> <licenses> <license> <name>BSD License</name> <url>http://xmlunit.svn.sourceforge.net/viewvc/*checkout*/xmlunit/trunk/xmlunit/LICENSE.txt</url> </license> </licenses> <scm> <url>http://xmlunit.svn.sourceforge.net/viewvc/xmlunit/</url> </scm> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <optional>true</optional> </dependency> </dependencies> </project>