HHH-13390
Upgrade JPA MetaModel Generator (jpamodelgen) to support Gradle Incremental Compile
This commit is contained in:
parent
a4ba766620
commit
a60a10f009
|
@ -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 );
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor,isolating
|
Loading…
Reference in New Issue