On this page
Configure a Gradle project
To build a Kotlin project with Gradle, you need to add the Kotlin Gradle plugin to your build script file build.gradle(.kts)
and configure the project's dependencies there.
Apply the plugin
To apply the Kotlin Gradle plugin, use the plugins
block from the Gradle plugins DSL:
// replace `<...>` with the plugin name
plugins {
kotlin("<...>") version "1.8.0"
}
// replace `<...>` with the plugin name
plugins {
id 'org.jetbrains.kotlin.<...>' version '1.8.0'
}
When configuring your project, check the Kotlin Gradle plugin compatibility with available Gradle versions. In the following table, there are the minimum and maximum fully supported versions of Gradle and Android Gradle plugin:
Kotlin version |
Gradle min and max versions |
Android Gradle plugin min and max versions |
---|---|---|
1.8.0 |
6.8.3 – 7.3.3 |
4.1.3 – 7.2.1 |
1.7.20 |
6.7.1 – 7.1.1 |
3.6.4 – 7.0.4 |
For example, the Kotlin Gradle plugin and the kotlin-multiplatform
plugin 1.8.0 require the minimum Gradle version of 6.8.3 for your project to compile.
Similarly, the maximum fully supported version is 7.3.3. It doesn't have deprecated Gradle methods and properties, and supports all the current Gradle features.
Targeting the JVM
To target the JVM, apply the Kotlin JVM plugin.
plugins {
kotlin("jvm") version "1.8.0"
}
plugins {
id "org.jetbrains.kotlin.jvm" version "1.8.0"
}
The version
should be literal in this block, and it cannot be applied from another build script.
Kotlin and Java sources
Kotlin sources and Java sources can be stored in the same folder, or they can be placed in different folders. The default convention is to use different folders:
project
- src
- main (root)
- kotlin
- java
The corresponding sourceSets
property should be updated if you are not using the default convention:
sourceSets.main {
java.srcDirs("src/main/myJava", "src/main/myKotlin")
}
sourceSets {
main.kotlin.srcDirs += 'src/main/myKotlin'
main.java.srcDirs += 'src/main/myJava'
}
Check for JVM target compatibility of related compile tasks
In the build module, you may have related compile tasks, for example:
compileKotlin
andcompileJava
compileTestKotlin
andcompileTestJava
For related tasks like these, the Kotlin Gradle plugin checks for JVM target compatibility. Different values of the jvmTarget
attribute in the kotlin
extension or task and targetCompatibility
in the java
extension or task cause JVM target incompatibility. For example: the compileKotlin
task has jvmTarget=1.8
, and the compileJava
task has (or inherits) targetCompatibility=15
.
Configure the behavior of this check by setting the kotlin.jvm.target.validation.mode
property in the build.gradle
file to:
error
– the plugin will fail the build; the default value for projects on Gradle 8.0+.warning
– the Kotlin Gradle plugin will print a warning message; the default value for projects on Gradle less than 8.0.ignore
– the plugin will skip the check and won't produce any messages.
To avoid JVM target incompatibility, configure a toolchain or align JVM versions manually.
What can go wrong if not checking targets compatibility
There are two ways of manually setting JVM targets for Kotlin and Java source sets:
The implicit way via setting up a Java toolchain.
The explicit way via setting the
jvmTarget
attribute in thekotlin
extension or task andtargetCompatibility
in thejava
extension or task.
JVM target incompatibility occurs if you:
Explicitly set different values of
jvmTarget
andtargetCompatibility
.Have a default configuration, and your JDK is not equal to
1.8
.
Let's consider a default configuration of JVM targets when you have only the Kotlin JVM plugin in your build script and no additional settings for JVM targets:
plugins {
kotlin("jvm") version "1.8.0"
}
plugins {
id "org.jetbrains.kotlin.jvm" version "1.8.0"
}
When there is no explicit information about the jvmTarget
value in the build script, its default value is null
, and the compiler translates it to the default value 1.8
. The targetCompatibility
equals a current Gradle's JDK version, which is equal to your JDK version (unless you use a Java toolchain approach). Assume that this version is 11
. Your published library artifact will declare the compatibility with JDK 11+: org.gradle.jvm.version=11
, which is wrong. You will have to use Java 11 in your main project to add this library, although the bytecode's version is 1.8
. Configure a toolchain to solve this issue.
Gradle Java toolchains support
Gradle 6.7 introduced Java toolchains support. Using this feature, you can:
Use a JDK and a JRE that are different from the ones in Gradle to run compilations, tests, and executables.
Compile and test code with a not-yet-released language version.
With toolchains support, Gradle can autodetect local JDKs and install missing JDKs that Gradle requires for the build. Now Gradle itself can run on any JDK and still reuse the remote build cache feature for tasks that depend on a major JDK version.
The Kotlin Gradle plugin supports Java toolchains for Kotlin/JVM compilation tasks. JS and Native tasks don't use toolchains. The Kotlin compiler always runs on the JDK the Gradle daemon is running on. A Java toolchain:
Sets the
-jdk-home
option available for JVM targets.Sets the
compilerOptions.jvmTarget
to the toolchain's JDK version if the user doesn't set thejvmTarget
option explicitly. If the user doesn't configure the toolchain, thejvmTarget
field uses the default value. Learn more about JVM target compatibility.Sets the toolchain to be used by any Java compile, test and javadoc tasks.
Affects which JDK
kapt
workers are running on.
Use the following code to set a toolchain. Replace the placeholder <MAJOR_JDK_VERSION>
with the JDK version you would like to use:
kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(<MAJOR_JDK_VERSION>)) // "8"
}
// Or shorter:
jvmToolchain(<MAJOR_JDK_VERSION>) // "8"
}
kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(<MAJOR_JDK_VERSION>)) // "8"
}
// Or shorter:
jvmToolchain(<MAJOR_JDK_VERSION>) // "8"
}
Note that setting a toolchain via the kotlin
extension updates the toolchain for Java compile tasks as well.
You can set a toolchain via the java
extension, and Kotlin compilation tasks will use it:
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(<MAJOR_JDK_VERSION>)) // "8"
}
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(<MAJOR_JDK_VERSION>)) // "8"
}
}
To set any JDK (even local) for the specific task, use the Task DSL.
Setting JDK version with the Task DSL
The Task DSL allows setting any JDK version for any task implementing the UsesKotlinJavaToolchain
interface. At the moment, these tasks are KotlinCompile
and KaptTask
. If you want Gradle to search for the major JDK version, replace the <MAJOR_JDK_VERSION>
placeholder in your build script:
val service = project.extensions.getByType<JavaToolchainService>()
val customLauncher = service.launcherFor {
it.languageVersion.set(JavaLanguageVersion.of(<MAJOR_JDK_VERSION>)) // "8"
}
project.tasks.withType<UsesKotlinJavaToolchain>().configureEach {
kotlinJavaToolchain.toolchain.use(customLauncher)
}
JavaToolchainService service = project.getExtensions().getByType(JavaToolchainService.class)
Provider<JavaLauncher> customLauncher = service.launcherFor {
it.languageVersion.set(JavaLanguageVersion.of(<MAJOR_JDK_VERSION>)) // "8"
}
tasks.withType(UsesKotlinJavaToolchain::class).configureEach { task ->
task.kotlinJavaToolchain.toolchain.use(customLauncher)
}
Or you can specify the path to your local JDK and replace the placeholder <LOCAL_JDK_VERSION>
with this JDK version:
tasks.withType<UsesKotlinJavaToolchain>().configureEach {
kotlinJavaToolchain.jdk.use(
"/path/to/local/jdk", // Put a path to your JDK
JavaVersion.<LOCAL_JDK_VERSION> // For example, JavaVersion.17
)
}
Associate compiler tasks
You can associate compilations by setting up such a relationship between them that one compilation uses the compiled outputs of the other. Associating compilations establishes internal
visibility between them.
The Kotlin compiler associates some compilations by default, such as the test
and main
compilations of each target. If you need to express that one of your custom compilations is connected to another, create your own associated compilation.
To make the IDE support associated compilations for inferring visibility between source sets, add the following code to your build.gradle(.kts)
:
val integrationTestCompilation = kotlin.target.compilations.create("integrationTest") {
associateWith(kotlin.target.compilations.getByName("main"))
}
integrationTestCompilation {
kotlin.target.compilations.create("integrationTest") {
associateWith(kotlin.target.compilations.getByName("main"))
}
}
Here, the integrationTest
compilation is associated with the main
compilation that gives access to internal
objects from functional tests.
Targeting multiple platforms
Projects targeting multiple platforms, called multiplatform projects, require the kotlin-multiplatform
plugin. Learn more about the plugin.
plugins {
kotlin("multiplatform") version "1.8.0"
}
plugins {
id 'org.jetbrains.kotlin.multiplatform' version '1.8.0'
}
Targeting Android
It's recommended to use Android Studio for creating Android applications. Learn how to use Android Gradle plugin.
Targeting JavaScript
When targeting only JavaScript, use the kotlin-js
plugin. Learn more
plugins {
kotlin("js") version "1.8.0"
}
plugins {
id 'org.jetbrains.kotlin.js' version '1.8.0'
}
Kotlin and Java sources for JavaScript
This plugin only works for Kotlin files, so it is recommended that you keep Kotlin and Java files separate (if the project contains Java files). If you don't store them separately, specify the source folder in the sourceSets
block:
kotlin {
sourceSets["main"].apply {
kotlin.srcDir("src/main/myKotlin")
}
}
kotlin {
sourceSets {
main.kotlin.srcDirs += 'src/main/myKotlin'
}
}
Triggering configuration actions with the KotlinBasePlugin interface
To trigger some configuration action whenever any Kotlin Gradle plugin (JVM, JS, Multiplatform, Native, and others) is applied, use the KotlinBasePlugin
interface that all Kotlin plugins inherit from:
import org.jetbrains.kotlin.gradle.plugin.KotlinBasePlugin
// ...
project.plugins.withType<KotlinBasePlugin>() {
// Configure your action here
}
import org.jetbrains.kotlin.gradle.plugin.KotlinBasePlugin
// ...
project.plugins.withType(KotlinBasePlugin.class) {
// Configure your action here
}
Configure dependencies
To add a dependency on a library, set the dependency of the required type (for example, implementation
) in the dependencies
block of the source sets DSL.
kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("com.example:my-library:1.0")
}
}
}
}
kotlin {
sourceSets {
commonMain {
dependencies {
implementation 'com.example:my-library:1.0'
}
}
}
}
Alternatively, you can set dependencies at top level.
Dependency types
Choose the dependency type based on your requirements.
Type |
Description |
When to use |
---|---|---|
|
Used both during compilation and at runtime and is exported to library consumers. |
If any type from a dependency is used in the public API of the current module, use an |
|
Used during compilation and at runtime for the current module, but is not exposed for compilation of other modules depending on the one with the `implementation` dependency. |
Use for dependencies needed for the internal logic of a module. If a module is an endpoint application which is not published, use |
|
Used for compilation of the current module and is not available at runtime nor during compilation of other modules. |
Use for APIs which have a third-party implementation available at runtime. |
|
Available at runtime but is not visible during compilation of any module. |
Dependency on the standard library
A dependency on the standard library (stdlib
) is added automatically to each source set. The version of the standard library used is the same as the version of the Kotlin Gradle plugin.
For platform-specific source sets, the corresponding platform-specific variant of the library is used, while a common standard library is added to the rest. The Kotlin Gradle plugin selects the appropriate JVM standard library depending on the compilerOptions.jvmTarget
compiler option of your Gradle build script.
If you declare a standard library dependency explicitly (for example, if you need a different version), the Kotlin Gradle plugin won't override it or add a second standard library.
If you do not need a standard library at all, you can add the opt-out option to the gradle.properties
:
kotlin.stdlib.default.dependency=false
Versions alignment of transitive dependencies
If you explicitly write the Kotlin version 1.8.0 or higher in your dependencies, for example: implementation("org.jetbrains.kotlin:kotlin-stdlib:1.8.0")
, then the Kotlin Gradle Plugin uses this Kotlin version for transitive kotlin-stdlib-jdk7
and kotlin-stdlib-jdk8
dependencies. This is for avoiding class duplication from different stdlib versions.[Learn more about merging kotlin-stdlib-jdk7
and kotlin-stdlib-jdk8
into kotlin-stdlib
. You can disable this behavior with the kotlin.stdlib.jdk.variants.version.alignment
Gradle property:
`kotlin.stdlib.jdk.variants.version.alignment=false`
Other ways to align versions
In case you have issues with versions alignment, align all versions via the Kotlin BOM. Declare a platform dependency on
kotlin-bom
in your build script:implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))
implementation platform('org.jetbrains.kotlin:kotlin-bom:1.8.0')
If you don't have a standard library explicitly:
kotlin.stdlib.default.dependency=false
in yourgradle.properties
, but one of your dependencies transitively brings some old Kotlin stdlib version, for example,kotlin-stdlib-jdk7:1.7.20
and another dependency transitively bringskotlin-stdlib:1.8+
– in this case, you can require1.8.0
versions of these transitive libraries:dependencies { constraints { add("implementation", "org.jetbrains.kotlin:kotlin-stdlib-jdk7") { version { require("1.8.0") } } add("implementation", "org.jetbrains.kotlin:kotlin-stdlib-jdk8") { version { require("1.8.0") } } } }
dependencies { constraints { add("implementation", "org.jetbrains.kotlin:kotlin-stdlib-jdk7") { version { require("1.8.0") } } add("implementation", "org.jetbrains.kotlin:kotlin-stdlib-jdk8") { version { require("1.8.0") } } } }
If you have a Kotlin version equal to
1.8.0
:implementation("org.jetbrains.kotlin:kotlin-stdlib:1.8.0")
and an old version (less than1.8.0
) of a Kotlin Gradle plugin – update the Kotlin Gradle plugin:// replace `<...>` with the plugin name plugins { kotlin("<...>") version "1.8.0" }
// replace `<...>` with the plugin name plugins { id "org.jetbrains.kotlin.<...>" version "1.8.0" }
If you have an explicit old version (less than
1.8.0
) ofkotlin-stdlib-jdk7
/kotlin-stdlib-jdk8
, for example,implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:SOME_OLD_KOTLIN_VERSION")
, and a dependency that transitively bringskotlin-stdlib:1.8+
, replace yourkotlin-stdlib-jdk<7/8>:SOME_OLD_KOTLIN_VERSION
withkotlin-stdlib-jdk*:1.8.0
or exclude a transitivekotlin-stdlib:1.8+
from the library that brings it:dependencies { implementation("com.example:lib:1.0") { exclude(group = "org.jetbrains.kotlin", module = "kotlin-stdlib") } }
dependencies { implementation("com.example:lib:1.0") { exclude group: "org.jetbrains.kotlin", module: "kotlin-stdlib" } }
Set dependencies on test libraries
The kotlin.test
API is available for testing Kotlin projects on all supported platforms. Add the dependency kotlin-test
to the commonTest
source set, so that the Gradle plugin can infer the corresponding test dependencies for each test source set:
kotlin-test-common
andkotlin-test-annotations-common
for common source setskotlin-test-junit
for JVM source setskotlin-test-js
for Kotlin/JS source sets
Kotlin/Native targets do not require additional test dependencies, and the kotlin.test
API implementations are built-in.
kotlin {
sourceSets {
val commonTest by getting {
dependencies {
implementation(kotlin("test")) // This brings all the platform dependencies automatically
}
}
}
}
kotlin {
sourceSets {
commonTest {
dependencies {
implementation kotlin("test") // This brings all the platform dependencies automatically
}
}
}
}
You can use the kotlin-test
dependency in any shared or platform-specific source set as well.
For Kotlin/JVM, Gradle uses JUnit 4 by default. Therefore, the kotlin("test")
dependency resolves to the variant for JUnit 4, namely kotlin-test-junit
.
You can choose JUnit 5 or TestNG by calling useJUnitPlatform()
or useTestNG()
in the test task of your build script. The following example is for a Kotlin Multiplatform project:
kotlin {
jvm {
testRuns["test"].executionTask.configure {
useJUnitPlatform()
}
}
sourceSets {
val commonTest by getting {
dependencies {
implementation(kotlin("test"))
}
}
}
}
kotlin {
jvm {
testRuns["test"].executionTask.configure {
useJUnitPlatform()
}
}
sourceSets {
commonTest {
dependencies {
implementation kotlin("test")
}
}
}
}
The following example is for a JVM project:
dependencies {
testImplementation(kotlin("test"))
}
tasks {
test {
useTestNG()
}
}
dependencies {
testImplementation 'org.jetbrains.kotlin:kotlin-test'
}
test {
useTestNG()
}
Learn how to test code using JUnit on the JVM.
If you need to use a different JVM test framework, disable automatic testing framework selection by adding the line kotlin.test.infer.jvm.variant=false
to the project's gradle.properties
file. After doing this, add the framework as a Gradle dependency.
If you have used a variant of kotlin("test")
in your build script explicitly and your project build stopped working with a compatibility conflict, see this issue in the Compatibility Guide.
Set a dependency on a kotlinx library
If you use a kotlinx library and need a platform-specific dependency, you can use platform-specific variants of libraries with suffixes such as -jvm
or -js
, for example, kotlinx-coroutines-core-jvm
. You can also use the library's base artifact name instead – kotlinx-coroutines-core
.
kotlin {
sourceSets {
val jvmMain by getting {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4")
}
}
}
}
kotlin {
sourceSets {
jvmMain {
dependencies {
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4'
}
}
}
}
If you use a multiplatform library and need to depend on the shared code, set the dependency only once, in the shared source set. Use the library's base artifact name, such as kotlinx-coroutines-core
or ktor-client-core
.
kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
}
}
}
}
kotlin {
sourceSets {
commonMain {
dependencies {
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4'
}
}
}
}
Set dependencies at top level
Alternatively, you can specify the dependencies at top level, using the following pattern for the configuration names: <sourceSetName><DependencyType>
. This can be helpful for some Gradle built-in dependencies, like gradleApi()
, localGroovy()
, or gradleTestKit()
, which are not available in the source sets' dependency DSL.
dependencies {
"commonMainImplementation"("com.example:my-library:1.0")
}
dependencies {
commonMainImplementation 'com.example:my-library:1.0'
}
What's next?
Learn more about:
© 2010–2023 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/docs/gradle-configure-project.html