kapt generated code not available during compilation phase
I have written a code generator using kapt, and am using it in a project compiling kotlin with maven.
I find that the kapt generator is invoked after Kotlin's compile phase, which prevents me from using the generated code within kotlin in the same project.
However, if I reference the generated classes from within Java in the same project, it works fine. This is because the java compilation phase comes after kotlin's generation phase.
I've specified the kapt goal before Kotlin's...