I have a gradle project which I've imported into intellij. Intellij creates the project layout with all the modules which is great. However, when I try to run any of the applications in the project intellij doesn't run gradle to do the builds. Instead I need to do it manually using the gradle window (gradle assemble or whatever). After that I can run the projects with intellij. However, the issue here is that my gradle builds generate source code and since IntelliJ doesn't hook gradle to do the builds when I touch the source files which are used to generate java source a build is not automatically run which is irritating to say the least
I've been using Android Studio which does actually do gradle builds using its "Gradle-aware Make", something which regular IntelliJ is missing.
Am I missing something or is this simply not supported yet?