Yeah I know that. I was wondering why `kotlin("jvm...
# gradle
e
Yeah I know that. I was wondering why
kotlin("jvm")
and other bundled plugin extensions (eg
build-scan
) worked and it turns out its because they are in package
org.gradle.kotlin.dsl
. Iirc the docs say that the package is imported by default in build scripts. Perfect 😄. If you place extensions in that package they should work and I think I am fine with that.