A collection of JAXP compliant validators for different XML Validation languages. The following validation situations are supported:
- Uber validator (IntrinsicSchemaFactory) - automatically detects the following situations:
- xml-model processing instruction (compliant with ISO/IEC 19757-11:2011)
- xsi annotated XML Schema
- DTD (coming soon)
- Relax NG XML Syntax (jing wrapper)
- Relax NG Compact Syntax
- (To be implemented) Schematron
- (To be implemented) NVDL
In addition, a small library of functionality is provided to support other validation implementations.
All artifacts are available in the maven central repository. Each validator is independent of any other validator, providing a developer with flexibility and the ability to substitue there own implementations of particular validation languages if desired. See the Usage examples for a more information.
The artifacts provided are as follows:
<dependency>
<groupId>com.componentcorp.xml.validation</groupId>
<artifactId>jxvc</artifactId>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>com.componentcorp.xml.validation</groupId>
<artifactId>relaxng</artifactId>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>com.componentcorp.xml.validation</groupId>
<artifactId>relaxng-compact</artifactId>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>com.componentcorp.xml.validation</groupId>
<artifactId>base</artifactId>
<version>0.9.0</version>
</dependency>
Javadoc for each project is available at:
- IntrinsicSchemaFactory uber validator
- Relax NG XML Syntax validator
- Relax NG Compact Syntax validator
- Utility Classes
- Maven - Dependency Management
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
- Ross Lamont - Initial work
See also the list of contributors who participated in this project.
This project is licensed under the Apache 2.0 License with some variations - see the LICENSE file for details