The `kspCommonMainKotlinMetadata` task is missing from my project. I've created a really simple KMP...
j
The
kspCommonMainKotlinMetadata
task is missing from my project. I've created a really simple KMP project to reproduce this issue, <https://github.com/nesk/ksp-common-test/commit/0da9413c2cbc837985e5420f334e9904f730db6d%7Ccould anyone check this commit (<20 lines) to help me understand why I can't see this task> when running
./gradlew tasks --all
, I only see the
kspKotlinJs
task 😞
Copy code
$ ./gradlew :lib:tasks --all | grep -i ksp
kspKotlinJs
I would like to generate common code with my ksp plugin, but this is impossible without this task.
f
This task does only exist when there is more than one compile target
👍 1
j
Copy code
$ ./gradlew :lib:tasks --all | grep -i ksp
kspCommonMainKotlinMetadata
kspKotlinJs
wow
so simple
thank you 😄