How to access org.jetbrains.kotlin.gradle.dsl.JvmTarget in buildSrc folder?

89 Views Asked by At

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?

1

There are 1 best solutions below

8
On

To access org.jetbrains.kotlin.gradle.dsl.JvmTarget and other types related to the Kotlin plugin in normal Kotlin files (including Kotlin files in the buildSrc project), you should add the Kotlin Gradle plugin JAR to the classpath:

dependencies {
    implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.22") 
}

Note that doing this in the buildSrc build.gradle.kts file adds the Kotlin plugin to the classpath of all build.gradle.kts files in the project, which means you will need to remove references to the version to other applications of the Kotlin plugin elsewhere in the build to avoid a Gradle error.

This also means that the version you specify in such a way in a buildSrc project will define the Kotlin plugin version throughout your project.