Does anyone knows maven plugin that validate xml documents against DTD or Schema and generates reports?
|
|
|
|
|
|
|
There is a maven-xml-plugin that can check whether XML files are matching an XML schema but I don't think it can generate reports. |
||
|
|
|
|
The validate goal of the xml-maven-plugin will check for well-formedness and optionally validate against a schema. The build will fail if the validation fails. The plugin does not produce any report, what would you want in a report out of interest? information about the invalid files? Here is an example usage:
|
||
|
