I think you could use Kotlin’s `extra` function th...
# gradle
g
I think you could use Kotlin’s
extra
function that will mimic Groovy’s
ext
, or better, create a
Convention
exposing the signature you want to add and register it into the target object with
DslObject
. I’ve didn’t actually tried this pattern in Groovy to work as expected.
🙏 1