I am trying to use the Maven XML plugin to validate my xml against a schema but I keep having an error saying:
cvc-elt.1: Cannot find the declaration of element 'xs:schema'.
I guess it has to deal with my namespaces declaration, so here they are:
In my XSD:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.myurl.com/schemas"
targetNamespace="http://www.myurl.com/schemas"
elementFormDefault="qualified" version="1.0">
In my XML:
<myTag xmlns="http://www.myurl.com/schemas">
What is wrong with those declarations? What do I need to modify?
Thanks for your help.