Emanuele Rabino
06/18/2021, 3:19 PMjavaParameters=true
option to the kotlin compiler. Which is right I guess, as a default. But if you then use some "annotationProcessor" that rely on "finding by reflection parameter by name" (for example using micronaut-data JdbcRepository with parametric query) then the compilation will crash. To solve the problem just make sure to provide ``javaParameters=true`` arg to the kotlin compiler (there is dedicated <javaParameters>true</javaParameters>
within kotlin-maven-plugin configuration. Hope this can help.