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 d25b459 commit cb1bc94Copy full SHA for cb1bc94
tooling/metamodel-generator/src/main/java/org/hibernate/processor/HibernateProcessor.java
@@ -291,7 +291,7 @@ && packagePresent(quarkusOrmPanachePackage) ) {
291
context.setInclude( options.getOrDefault( INCLUDE, "*" ) );
292
context.setExclude( options.getOrDefault( EXCLUDE, "" ) );
293
294
- context.setIndexing( parseBoolean( options.get( INDEX ) ) );
+ context.setIndexing( parseBoolean( options.getOrDefault( INDEX, "true" ) ) );
295
296
return parseBoolean( options.get( FULLY_ANNOTATION_CONFIGURED_OPTION ) );
297
}
0 commit comments