1
0
mirror of https://github.com/hibernate/hibernate-orm synced 2025-02-20 18:14:59 +00:00

HHH-17323 Add annotation processor for tests explicitly

This commit is contained in:
Christian Beikov 2023-10-16 12:51:52 +02:00
parent 0057454d02
commit 627608e65c

@ -137,6 +137,8 @@ private List<String> createJavaOptions() {
List<String> options = new ArrayList<String>();
options.add( "-d" );
options.add( TestUtil.getOutBaseDir().getAbsolutePath() );
options.add( "-processor" );
options.add( JPAMetaModelEntityProcessor.class.getName() );
// pass orm files if specified
if ( !xmlMappingFiles.isEmpty() ) {