Kelvin Chung
04/18/2024, 7:58 PMplugins {
groovy
`kotlin-dsl`
}
In my plugin entry point (myPlugin.gradle.kts), I have this:
import my.groovy.sources.ThisClass
(ie. ThisClass is part of the Groovy source set)
Right now, my IDE is not reporting any issues, but it looks like the compileKotlin task is barfing because it can't find ThisClass. Is there something that needs to be wired specifically, possibly to ensure that the Groovy and Kotlin code is interoperable?Vampire
04/18/2024, 8:15 PM