We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcf042c commit cf529fdCopy full SHA for cf529fd
extensions/hibernate-orm/deployment/src/test/java/io/quarkus/hibernate/orm/deployment/ClassNamesTest.java
@@ -107,6 +107,8 @@ public void testNoMissingHibernateAnnotation() {
107
}
108
109
private static void ignoreInternalAnnotations(Set<DotName> annotationSet) {
110
+ annotationSet.removeIf(name -> name.toString().equals("org.hibernate.cfg.Compatibility"));
111
+ annotationSet.removeIf(name -> name.toString().equals("org.hibernate.cfg.Unsafe"));
112
annotationSet.removeIf(name -> name.toString().equals("org.hibernate.Incubating"));
113
annotationSet.removeIf(name -> name.toString().equals("org.hibernate.Internal"));
114
annotationSet.removeIf(name -> name.toString().equals("org.hibernate.Remove"));
0 commit comments