HHH-17323 Add annotation processor for tests explicitly
This commit is contained in:
parent
0d2f55e4c8
commit
eb5f9da285
|
@ -139,6 +139,8 @@ public class CompilationStatement extends Statement {
|
||||||
List<String> options = new ArrayList<String>();
|
List<String> options = new ArrayList<String>();
|
||||||
options.add( "-d" );
|
options.add( "-d" );
|
||||||
options.add( TestUtil.getOutBaseDir().getAbsolutePath() );
|
options.add( TestUtil.getOutBaseDir().getAbsolutePath() );
|
||||||
|
options.add( "-processor" );
|
||||||
|
options.add( JPAMetaModelEntityProcessor.class.getName() );
|
||||||
|
|
||||||
// pass orm files if specified
|
// pass orm files if specified
|
||||||
if ( !xmlMappingFiles.isEmpty() ) {
|
if ( !xmlMappingFiles.isEmpty() ) {
|
||||||
|
|
Loading…
Reference in New Issue