Maven Repository - POM file for XPath xmlunit 1.1 1.1

Summary

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..

Declaration

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.1</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.





License

Name:BSD License
URL: http://xmlunit.svn.sourceforge.net/viewvc/*checkout*/xmlunit/trunk/xmlunit/LICENSE.txt.

Depends on

The xmlunit-1.1 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 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

Depended by

The following table lists the most popular artifacts which are depending on xmlunit-1.1. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
XML Parsermule-transport-xfire 2.0.0-RC2
A Mule transport for SOAP connectivity using XFire, a STaX-based SOAP stack.
5
Data StructureXmlSchema 1.4.4
Commons XMLSchema is a light weight schema object model that can be used to manipulate or generate a schema. It has a clean, easy to use API and can easily be integrated into an existing project since it has almost no dependencies on third party libraries.
6
XMLmule-module-xml 2.0.0
Functionality for working with XML
5
Groovygroovy-all 1.5.4
Groovy: A powerful, dynamic language for the JVM
6
Data StructureXmlSchema 1.4.3
Commons XMLSchema is a light weight schema object model that can be used to manipulate or generate a schema. It has a clean, easy to use API and can easily be integrated into an existing project since it has almost no dependencies on third party libraries.
8
Groovygroovy 1.1-rc-2
Groovy: A powerful, dynamic language for the JVM
30
XMLmule-module-xml 2.0.2
Functionality for working with XML
7
Data StructureXmlSchema 1.4.2
Commons XMLSchema is a light weight schema object model that can be used to manipualte or generate a schema. It has a clean, easy to use API and can easily be integrated into an existing project since it has almost no dependancies on third party libraries.
9
XMLmule-module-xml 2.0.0-RC2
Functionality for working with XML
7
Groovygroovy 1.5.7
Groovy: A powerful, dynamic language for the JVM
24
Testingtest-support 1.0-alpha-4
Set of classes to assist in creation of unit tests
12
XMLmule-module-xml 2.0.1
Functionality for working with XML
6
Groovygroovy 1.5.6
Groovy: A powerful, dynamic language for the JVM
7
XMLmule-module-xml 2.0.0-RC3
Functionality for working with XML
5
Data StructureXmlSchema 1.4.5
Commons XMLSchema is a light weight schema object model that can be used to manipulate or generate a schema. It has a clean, easy to use API and can easily be integrated into an existing project since it has almost no dependencies on third party libraries.
8
XML Bindingaxiom-impl 1.2.13
The Axiom default implementation.
10




Packages

The following packages are defined in the xmlunit-1.1.jar

org.custommonkey.xmlunit
org.custommonkey.xmlunit.examples
org.custommonkey.xmlunit.exceptions
org.custommonkey.xmlunit.jaxp13
org.custommonkey.xmlunit.util

POM File Source

Here is the content of the POM file.

<?xml version="1.0"?>
<!--

  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.1</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>