How would I create a custom Kotlin compilation task that can then be configured differently, like having different jvm-target, so that the module-info is verified?
As far as I have seen, I cannot simply create a custom
KotlinCompile
task.
Do I need to create a custom compilation instead?
Any pointers on how to do it properly best, so that the same code is compiled just with different settings?