Luis Fernando Planella Gonzalez
unread,Jun 5, 2014, 8:45:38 AM6/5/14Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Querydsl
I've been using the Querydsl apt maven plugin, which was automatically
integrated on Eclipse by m2e.
However, I noticed that when removing an entity, the old Q-type stays
there, and needs to be manually removed.
Is there a tip or configuration on this?
The relevant part in the pom.xml is:
<plugin>
<groupId>com.mysema.maven</groupId>
<artifactId>apt-maven-plugin</artifactId>
<version>1.0.9</version>
<executions>
<execution>
<goals>
<goal>process</goal>
</goals>
<configuration>
<outputDirectory>target/generated-sources/java</outputDirectory>
<processor>com.mysema.query.apt.jpa.JPAAnnotationProcessor</processor>
<options>
<querydsl.entityAccessors>true</querydsl.entityAccessors>
<defaultOverwrite>true</defaultOverwrite>
</options>
</configuration>
</execution>
</executions>
</plugin>
Best regards,
--
Luis Fernando Planella Gonzalez