7.0 releases

This commit is contained in:
Steve Ebersole 2024-06-14 09:06:25 -05:00
parent 31f495c9d5
commit 1c7554b62b
3 changed files with 2 additions and 5 deletions

View File

@ -61,7 +61,7 @@ pipeline {
label 'Worker&&Containers' label 'Worker&&Containers'
} }
tools { tools {
jdk 'OpenJDK 11 Latest' jdk 'OpenJDK 17 Latest'
} }
options { options {
buildDiscarder logRotator(daysToKeepStr: '30', numToKeepStr: '10') buildDiscarder logRotator(daysToKeepStr: '30', numToKeepStr: '10')

View File

@ -234,9 +234,6 @@ public class AnnotationMetadataSourceProcessorImpl implements MetadataSourceProc
if ( clazz.hasDirectAnnotationUsage( Entity.class ) ) { if ( clazz.hasDirectAnnotationUsage( Entity.class ) ) {
throw new MappingException( "Only classes (not interfaces) may be mapped as @Entity : " + clazz.getName() ); throw new MappingException( "Only classes (not interfaces) may be mapped as @Entity : " + clazz.getName() );
} }
// if ( clazz.hasDirectAnnotationUsage( MappedSuperclass.class ) ) {
// throw new MappingException( "Only classes (not interfaces) may be mapped as @MappedSuperclass : " + clazz.getName() );
// }
} }
if ( clazz.hasDirectAnnotationUsage( MappedSuperclass.class ) ) { if ( clazz.hasDirectAnnotationUsage( MappedSuperclass.class ) ) {
if ( debug ) { if ( debug ) {

View File

@ -182,7 +182,7 @@ must be explicitly set to true.
[[hbm-transform]] [[hbm-transform]]
== hbm.xml Transformation == hbm.xml Transformation
Previous versions of Hibernate performed transformations of `hbm.xml` files (with `` enabled) Previous versions of Hibernate performed transformations of `hbm.xml` files (with `hibernate.transform_hbm_xml.enabled=true`)
one file at a time. This is now done across the entire set of `hbm.xml` files at once. one file at a time. This is now done across the entire set of `hbm.xml` files at once.
While most users will never see this change, it might impact integrations which tie-in to While most users will never see this change, it might impact integrations which tie-in to
XML processing. XML processing.