In my Android/Gradle project in the buildSrc folder I like to provide a property which returns the data type org.jetbrains.kotlin.gradle.dsl.JvmTarget in the buildSrc folder. The build configuration for this folder currently looks like this:
plugins {
`kotlin-dsl`
}
repositories {
mavenCentral()
}
Which plugin/dependency do I have to add to get access to org.jetbrains.kotlin.gradle.dsl data types?