We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0057454 commit 627608eCopy full SHA for 627608e
tooling/metamodel-generator/src/test/java/org/hibernate/jpamodelgen/test/util/CompilationStatement.java
@@ -137,6 +137,8 @@ private List<String> createJavaOptions() {
137
List<String> options = new ArrayList<String>();
138
options.add( "-d" );
139
options.add( TestUtil.getOutBaseDir().getAbsolutePath() );
140
+ options.add( "-processor" );
141
+ options.add( JPAMetaModelEntityProcessor.class.getName() );
142
143
// pass orm files if specified
144
if ( !xmlMappingFiles.isEmpty() ) {
0 commit comments