Skip to content

Commit

Permalink
HHH-17460 - Ongoing JPA 32 work
Browse files Browse the repository at this point in the history
  • Loading branch information
sebersole committed Mar 28, 2024
1 parent c5db560 commit 89cb03f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Expand Up @@ -144,7 +144,8 @@ public static <A extends Annotation> MutableAnnotationUsage<A> makeNestedAnnotat
xmlDocumentContext.getModelBuildingContext()
.getAnnotationDescriptorRegistry()
.getDescriptor( annotationType ),
target
target,
xmlDocumentContext.getModelBuildingContext()
);
}

Expand All @@ -154,7 +155,9 @@ public static <A extends Annotation> MutableAnnotationUsage<A> makeNestedAnnotat
return new DynamicAnnotationUsage<>(
xmlDocumentContext.getModelBuildingContext()
.getAnnotationDescriptorRegistry()
.getDescriptor( annotationType )
.getDescriptor( annotationType ),
null,
xmlDocumentContext.getModelBuildingContext()
);
}

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Expand Up @@ -73,7 +73,7 @@ dependencyResolutionManagement {
def byteBuddyVersion = version "byteBuddy", "1.14.12"
def classmateVersion = version "classmate", "1.5.1"
def geolatteVersion = version "geolatte", "1.8.2"
def hibernateModelsVersion = version "hibernateModels", "0.7.0"
def hibernateModelsVersion = version "hibernateModels", "0.7.1"
def jandexVersion = version "jandex", "3.1.2"
def hcannVersion = version "hcann", "6.0.6.Final"
def jacksonVersion = version "jackson", "2.14.1"
Expand Down

0 comments on commit 89cb03f

Please sign in to comment.