DATAMONGO-2501 - Upgrade to Querydsl 4.3.

Adapted to changes in the APT APIs.
This commit is contained in:
Oliver Drotbohm
2020-03-26 14:36:41 +01:00
parent 6366d3cec1
commit 7bac739146

View File

@@ -54,9 +54,9 @@ public class MongoAnnotationProcessor extends AbstractQuerydslProcessor {
processingEnv.getMessager().printMessage(Diagnostic.Kind.NOTE, "Running " + getClass().getSimpleName());
DefaultConfiguration configuration = new DefaultConfiguration(roundEnv, processingEnv.getOptions(),
Collections.emptySet(), QueryEntities.class, Document.class, QuerySupertype.class,
QueryEmbeddable.class, QueryEmbedded.class, QueryTransient.class);
DefaultConfiguration configuration = new DefaultConfiguration(processingEnv, roundEnv, Collections.emptySet(),
QueryEntities.class, Document.class, QuerySupertype.class, QueryEmbeddable.class, QueryEmbedded.class,
QueryTransient.class);
configuration.setUnknownAsEmbedded(true);
return configuration;