Hi guys! Is there a way, to include annotation processed files into zip?
I have a task:
Copy code
task buildZip(type: Zip) {
from compileKotlin
from processResources
into("lib") {
from configurations.compileClasspath
}
}
But this include only the classes I created, not classes created by annotation processing. The build process create the classes made by annotation processing under
tmp/kapt3/classes/main
. Do you know a way to include these files as well?
lkonya
04/17/2019, 10:38 AM
If anyone is looking for the solution for the same problem: