Whilst the Gradle Kotlin DSL is still under development, there are a few slightly rough edges. This is (not quite) a Gradle plugin to help soften those rough edges. It contains Kotlin extension functions and properties but no actual plugin.
As there is no plugin, it's enough to add this to your buildscript
dependencies:
buildscript {
repositories {
maven("https://jitpack.io")
}
dependencies {
classpath("com.github.omricat:gradle-kotlin-dsl-extensions:latest.version")
}
}