I am writing a Gradle plugin that registers some tasks. The tasks currently are registered to depend on
kotlinCompile
. Is there a way to make it work with multiplatform in a generic name without me having to list all the possible names? Because it fails to find the task. On the JVM target it is
It's a bit weird though. Do you need access to the
.class
and
.klib
files?
mbonnin
12/22/2023, 12:29 PM
Typically the outputs of the kotlin compiler are pretty hard to process unless you're the kotlin compiler yourself.
Depending what your task is doing, you might be able to find better dependencies