HHH-14529 Fix invalid namespace URIs in MappingXsdSupport

Probably copy/pasted from ConfigXsdSupport, and we forgot to add the
"/orm" suffix.
This commit is contained in:
Yoann Rodière 2021-03-31 14:37:03 +02:00
parent fcc63d9ab0
commit 18f23ee701
1 changed files with 2 additions and 2 deletions

View File

@ -35,13 +35,13 @@ public class MappingXsdSupport {
private final XsdDescriptor jpa21 = LocalXsdResolver.buildXsdDescriptor(
"org/hibernate/jpa/orm_2_1.xsd",
"2.1",
"http://xmlns.jcp.org/xml/ns/persistence"
"http://xmlns.jcp.org/xml/ns/persistence/orm"
);
private final XsdDescriptor jpa22 = LocalXsdResolver.buildXsdDescriptor(
"org/hibernate/jpa/orm_2_2.xsd",
"2.2",
"http://xmlns.jcp.org/xml/ns/persistence"
"http://xmlns.jcp.org/xml/ns/persistence/orm"
);
private final XsdDescriptor jpa30 = LocalXsdResolver.buildXsdDescriptor(