I have a plugin that needs sort of a config object...
# gradle
d
I have a plugin that needs sort of a config object defined on the script which looks like
Copy code
versioning { allowOverride = true }
, but looks like I cannot reference it directly in kotlin script like I could in groovy I guess due to dynamic typing, how do I do that in kotlin?