I want to use QueryDSL annotation processor as a part of my build process. How can I get rid of unnecessary annotation processor compile&run everytime i change any class? I want QueryDSL to generate Q-* classes only if some related classes are changed.
This always running annotation processor has negative impact on our build process time and it looks like incremental building is not working if annotation processor has to run.
Thank you.