micronaut-gradle-plugin
micronaut-gradle-plugin copied to clipboard
Test bean definitions not generated with the new build system and kapt
Im on 2.1.1
and the new build system with gradle plugins and not incremental kapt processing defined by:
micronaut {
processing {
incremental false
}
However, it seems it's still incremental (at least for tests), and because of micronaut-projects/micronaut-core#3742 beans definitions are not generated on rebuild.
Please see the attached video.
Workarounded by forcefully setting kapt.incremental.apt=false
in gradle.properties
.