what's wrong with the following configuration?
<plugin>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-maven-plugin</artifactId>
<version>4.1.4</version>
<executions>
<execution>
<id>generate-query-dsl-classes</id>
<phase>compile</phase>
<goals>
<goal>jpa-export</goal>
<goal>compile</goal>
</goals>
<configuration>
<targetFolder>target/generated-sources/query_dsl/qclasses</targetFolder>
<packages>
<package>com.test.data.jpa.domain</package>
</packages>
<sourceFolder>target/generated-sources/query_dsl/qclasses</sourceFolder>
</configuration>
</execution>
</executions>
</plugin>
The problem is that QClasses neither get generated or compiled when the project is compiled, as the QClasses are referenced in code, compilation cannot proceed, What is the correct configuration?