HHH-13390

Upgrade JPA MetaModel Generator (jpamodelgen) to support Gradle Incremental Compile
This commit is contained in:
Sam De Block 2020-01-28 00:26:02 +01:00 committed by Steve Ebersole
parent a4ba766620
commit a60a10f009
2 changed files with 3 additions and 1 deletions

View File

@ -53,7 +53,8 @@ public final class ClassWriter {
String body = generateBody( entity, context ).toString();
FileObject fo = context.getProcessingEnvironment().getFiler().createSourceFile(
getFullyQualifiedClassName( entity, metaModelPackage )
getFullyQualifiedClassName( entity, metaModelPackage ),
entity.getTypeElement()
);
OutputStream os = fo.openOutputStream();
PrintWriter pw = new PrintWriter( os );

View File

@ -0,0 +1 @@
org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor,isolating