Patrik Åkerfeldt
10/31/2022, 9:43 AMcompileKotlin
. However, this means that after first compilation of the project there aren't any compiled classes for the generated sources. I have a circular dependency where I can't run source code generation until classes are compiled but I also want the compile phase to include the generated sources.
How to best deal with this? To me it would make sense if I could first compile specified classes needed to run the code generation, then run source code generation and lastly run the "regular" compileKotlin
.Patrik Åkerfeldt
10/31/2022, 9:51 AMChris Lee
10/31/2022, 4:23 PM