What's the proper way to access resource outputs o...
# ksp
z
What's the proper way to access resource outputs of the
KspTask
Gradle task in a consumer task? I'm seeing:
Copy code
kspTask.outputs.files
return an empty
FileCollection
. Even though
build/generated/ksp/test/resources
is non-empty. If I re-execute the task (and Gradle does another configuration phase pass),
kspTask.outputs.files
is correctly non-empty and this works as expected