Download xml-matchers-1.0.jar file

Introduction

You can download xml-matchers-1.0.jar in this page.

License

Apache License, Version 2.0

Type List

xml-matchers-1.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.xmlmatchers/xml-matchers/pom.properties
META-INF/maven/org.xmlmatchers/xml-matchers/pom.xml
org.xmlmatchers.XmlMatchers.class
org.xmlmatchers.equivalence.IsEquivalentTo.class
org.xmlmatchers.namespace.SimpleNamespaceContext.class
org.xmlmatchers.transform.IdentityTransformer.class
org.xmlmatchers.transform.StringResult.class
org.xmlmatchers.transform.StringSource.class
org.xmlmatchers.transform.TransformerException.class
org.xmlmatchers.transform.XmlConverters.class
org.xmlmatchers.validation.ConformsToSchema.class
org.xmlmatchers.validation.SchemaFactory.class
org.xmlmatchers.xpath.HasXPath.class
org.xmlmatchers.xpath.XpathReturnType.class

Pom

xml-matchers-1.0.pom file content.

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>

	<groupId>org.xmlmatchers</groupId>
	<artifactId>xml-matchers</artifactId>
	<version>1.0-RC1</version>
	<packaging>jar</packaging>

	<name>xml-matchers</name>
	<url>http://code.google.com/p/xml-matchers/</url>
	<description>A collection of Hamcrest matchers for XML documents. The matchers include XPath, schema validation using XML Schema or RelaxNG(experimental), and XML document equivalence.</description>

	<inceptionYear>2010</inceptionYear>
	<developers>
		<developer>
			<name>David Ehringer</name>
			<organizationUrl>http://davidehringer.com</organizationUrl>
		</developer>
	</developers>
	<licenses>
		<license>
			<name>Apache License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0</url>
		</license>
	</licenses>

	<scm>
		<connection>scm:svn:http://xml-matchers.googlecode.com/svn/tags/xml-matchers-1.0-RC1</connection>
		<developerConnection>scm:svn:https://xml-matchers.googlecode.com/svn/tags/xml-matchers-1.0-RC1</developerConnection>
		<url>http://code.google.com/p/xml-matchers/source/browse/tags/xml-matchers-1.0-RC1</url>
	</scm>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<dependencies>

		<dependency>
			<groupId>org.hamcrest</groupId>
			<artifactId>hamcrest-core</artifactId>
			<version>1.3</version>
		</dependency>

		<dependency>
			<groupId>xmlunit</groupId>
			<artifactId>xmlunit</artifactId>
			<version>1.3</version>
		</dependency>

		<dependency>
			<groupId>net.sf.saxon</groupId>
			<artifactId>Saxon-HE</artifactId>
			<version>9.4</version>
		</dependency>

		<dependency>
			<groupId>org.hamcrest</groupId>
			<artifactId>hamcrest-library</artifactId>
			<version>1.2</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit-dep</artifactId>
			<version>4.8.2</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.hamcrest</groupId>
			<artifactId>hamcrest-generator</artifactId>
			<version>1.2</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>

POM Entry

<dependency>
   <groupId>org.xmlmatchers</groupId>
   <artifactId>xml-matchers</artifactId>
   <version>1.0</version>
</dependency>

Download

If you think the following xml-matchers-1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download xml-matchers-1.0.jar file




PreviousNext

Related