Skip to content

Commit

Permalink
HHH-17323 Add annotation processor for tests explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
beikov committed Dec 1, 2023
1 parent 0d2f55e commit eb5f9da
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,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() ) {
Expand Down

0 comments on commit eb5f9da

Please sign in to comment.