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 0d2f55e commit eb5f9daCopy full SHA for eb5f9da
tooling/metamodel-generator/src/test/java/org/hibernate/jpamodelgen/test/util/CompilationStatement.java
@@ -139,6 +139,8 @@ private List<String> createJavaOptions() {
139
List<String> options = new ArrayList<String>();
140
options.add( "-d" );
141
options.add( TestUtil.getOutBaseDir().getAbsolutePath() );
142
+ options.add( "-processor" );
143
+ options.add( JPAMetaModelEntityProcessor.class.getName() );
144
145
// pass orm files if specified
146
if ( !xmlMappingFiles.isEmpty() ) {
0 commit comments