<?xml version="1.0"?>
<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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.wicketstuff.htmlvalidator</groupId>
		<artifactId>wicketstuff-htmlvalidator-parent</artifactId>
		<version>1.11</version>
		<relativePath>../pom.xml</relativePath>
	</parent>
	<artifactId>wicketstuff-jing</artifactId>
	<packaging>jar</packaging>
	<name>Jing Relax NG parser</name>
	<description>
		Jing is a validator for RELAX NG and other schema languages. This
        project was taken from http://code.google.com/p/jing-trang and
        mavenized for inclusion in the Wicket Stuff HTML Validator.
		The code was taken from the 20091111 release.
	</description>
	<licenses>
		<license>
			<name>BSD License</name>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<dependencies>
		<dependency>
			<groupId>org.wicketstuff.htmlvalidator</groupId>
			<artifactId>wicketstuff-isorelax</artifactId>
		</dependency>
		<dependency>
			<groupId>net.sf.saxon</groupId>
			<artifactId>Saxon-HE</artifactId>
		</dependency>
		<dependency>
			<groupId>xml-resolver</groupId>
			<artifactId>xml-resolver</artifactId>
		</dependency>
		<dependency>
			<groupId>xalan</groupId>
			<artifactId>xalan</artifactId>
		</dependency>
		<dependency>
			<groupId>xerces</groupId>
			<artifactId>xercesImpl</artifactId>
		</dependency>
		<dependency>
			<groupId>org.apache.ant</groupId>
			<artifactId>ant</artifactId>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
			</plugin>
		</plugins>
	</build>
</project>
