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:
parent
fcc63d9ab0
commit
18f23ee701
|
@ -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(
|
||||
|
|
Loading…
Reference in New Issue