Updating to RavenDB 4 seems to have broken the Maven setup for querydsl. This no longer seems to work:
<plugin>
<groupId>com.mysema.maven</groupId>
<artifactId>apt-maven-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<goals>
<goal>process</goal>
</goals>
<configuration>
<outputDirectory>target/generated-sources/java</outputDirectory>
<processor>net.ravendb.querydsl.RavenDBAnnotationProcessor</processor>
<options>
<querydsl.entityAccessors>true</querydsl.entityAccessors>
</options>
</configuration>
</execution>
</executions>
</plugin>
It no longer recognizes the @QueryEntity tag. I have gone through the 4.0 documentation, but couldn't find anything... Thanks for any pointers to get this fixed.
Regards