We are developing a spring boot application, and the final deployable is a JAR file. We have used the query DSL plugin, which generates Qclasses in the target/generated-sources/annotations folder. (org.springframework.data.mongodb.repository.support.MongoAnnotationProcessor).
The issue is that when we do maven install, the Qclasses do not get bundled in a JAR file, though they are generated (when we did clean and generate source), and we can see them in our IDE; we tried using Eclipse and IntelliJ IDE. We also added the plugin mentioned in this StackOverflow link, but it makes no difference.
Surprisingly it was working fine (even without the plugin mentioned above), and suddenly it stopped one fine day.
Eclipse version: 2020-03 (4.150), IntelliJ version: 11.0.13+7-b1751.19
Can someone advice/assist?