Fabian
07/09/2020, 1:47 PMsrc/main/resources during the processing. It works fine once I add the following configuration when using java as a source:
tasks.withType<JavaCompile> {
options.sourcepath = files("src/main/resources")
}
I´m now trying to use the same annotation processor with kotlin and kapt, it however always fails with a file not found exception. So far I did not find the equivalent configuration for options.sourcepath with kotlin/kapt in order for the annotation processor to be able to access the files.