HHH-17460 - Ongoing JPA 32 work

This commit is contained in:
Steve Ebersole 2024-03-18 14:32:13 -05:00
parent 439ff8dcf7
commit 0a86254c2f
2 changed files with 6 additions and 3 deletions

View File

@ -144,7 +144,8 @@ public class XmlProcessingHelper {
xmlDocumentContext.getModelBuildingContext() xmlDocumentContext.getModelBuildingContext()
.getAnnotationDescriptorRegistry() .getAnnotationDescriptorRegistry()
.getDescriptor( annotationType ), .getDescriptor( annotationType ),
target target,
xmlDocumentContext.getModelBuildingContext()
); );
} }
@ -154,7 +155,9 @@ public class XmlProcessingHelper {
return new DynamicAnnotationUsage<>( return new DynamicAnnotationUsage<>(
xmlDocumentContext.getModelBuildingContext() xmlDocumentContext.getModelBuildingContext()
.getAnnotationDescriptorRegistry() .getAnnotationDescriptorRegistry()
.getDescriptor( annotationType ) .getDescriptor( annotationType ),
null,
xmlDocumentContext.getModelBuildingContext()
); );
} }

View File

@ -70,7 +70,7 @@ dependencyResolutionManagement {
def byteBuddyVersion = version "byteBuddy", "1.14.18" def byteBuddyVersion = version "byteBuddy", "1.14.18"
def classmateVersion = version "classmate", "1.5.1" def classmateVersion = version "classmate", "1.5.1"
def geolatteVersion = version "geolatte", "1.9.1" def geolatteVersion = version "geolatte", "1.9.1"
def hibernateModelsVersion = version "hibernateModels", "0.7.0" def hibernateModelsVersion = version "hibernateModels", "0.7.1"
def jandexVersion = version "jandex", "3.2.0" def jandexVersion = version "jandex", "3.2.0"
def hcannVersion = version "hcann", "7.0.1.Final" def hcannVersion = version "hcann", "7.0.1.Final"
def jacksonVersion = version "jackson", "2.17.0" def jacksonVersion = version "jackson", "2.17.0"