org.gradle.kotlin.kotlin-dsl
CC-compatible
Owner:
Gradle
Gradle Kotlin DSL Plugin
https://github.com/gradle/gradle/tree/HEAD/platforms/core-configuration/kotlin-dsl-plugins
Sources: https://github.com/gradle/gradle/tree/HEAD/platforms/core-configuration/kotlin-dsl-plugins
Version 6.6.1 (latest)
Created 08 April 2026.
Applies version `2.3.21-RC` of the `org.jetbrains.kotlin.jvm` plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("org.gradle.kotlin.kotlin-dsl") version "6.6.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("org.gradle.kotlin.kotlin-dsl:org.gradle.kotlin.kotlin-dsl.gradle.plugin:6.6.1") }It can then be applied in the precompiled script plugin:plugins { id("org.gradle.kotlin.kotlin-dsl") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.gradle.kotlin.kotlin-dsl:org.gradle.kotlin.kotlin-dsl.gradle.plugin:6.6.1") } } apply(plugin = "org.gradle.kotlin.kotlin-dsl") - Applying plugins to all subprojects .