|
|
|
@ -27,10 +27,11 @@ import javax.lang.model.SourceVersion; |
|
|
|
import javax.lang.model.element.TypeElement; |
|
|
|
import javax.lang.model.element.TypeElement; |
|
|
|
import javax.tools.Diagnostic; |
|
|
|
import javax.tools.Diagnostic; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.data.document.mongodb.mapping.Document; |
|
|
|
|
|
|
|
|
|
|
|
import com.mysema.query.annotations.QueryEmbeddable; |
|
|
|
import com.mysema.query.annotations.QueryEmbeddable; |
|
|
|
import com.mysema.query.annotations.QueryEmbedded; |
|
|
|
import com.mysema.query.annotations.QueryEmbedded; |
|
|
|
import com.mysema.query.annotations.QueryEntities; |
|
|
|
import com.mysema.query.annotations.QueryEntities; |
|
|
|
import com.mysema.query.annotations.QueryEntity; |
|
|
|
|
|
|
|
import com.mysema.query.annotations.QuerySupertype; |
|
|
|
import com.mysema.query.annotations.QuerySupertype; |
|
|
|
import com.mysema.query.annotations.QueryTransient; |
|
|
|
import com.mysema.query.annotations.QueryTransient; |
|
|
|
import com.mysema.query.apt.DefaultConfiguration; |
|
|
|
import com.mysema.query.apt.DefaultConfiguration; |
|
|
|
@ -60,7 +61,7 @@ public class MongoAnnotationProcessor extends AbstractProcessor { |
|
|
|
DefaultConfiguration configuration = |
|
|
|
DefaultConfiguration configuration = |
|
|
|
new DefaultConfiguration(roundEnv, processingEnv.getOptions(), |
|
|
|
new DefaultConfiguration(roundEnv, processingEnv.getOptions(), |
|
|
|
Collections.<String> emptySet(), QueryEntities.class, |
|
|
|
Collections.<String> emptySet(), QueryEntities.class, |
|
|
|
QueryEntity.class, QuerySupertype.class, |
|
|
|
Document.class, QuerySupertype.class, |
|
|
|
QueryEmbeddable.class, QueryEmbedded.class, |
|
|
|
QueryEmbeddable.class, QueryEmbedded.class, |
|
|
|
QueryTransient.class); |
|
|
|
QueryTransient.class); |
|
|
|
|
|
|
|
|
|
|
|
|