From 821917bb4bd92d7b9c474aeb8f15c7665957a7e8 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Tue, 23 Aug 2022 22:50:05 +0200 Subject: [PATCH] tools_gradle_intellij_plugin.md: Kotlin stdlib --- .../gradle_intellij_plugin/tools_gradle_intellij_plugin.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin.md b/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin.md index 5c67e40f2..6c1e66e47 100644 --- a/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin.md +++ b/topics/appendix/tools/gradle_intellij_plugin/tools_gradle_intellij_plugin.md @@ -1672,4 +1672,8 @@ Validates the plugin project configuration: - The `languageVersion` property of the Kotlin configuration (if used) can't be lower than the Kotlin bundled with IDE in the version specified by the [`intellij.version`](#intellij-extension-version) or [`patchPluginXml.sinceBuild`](#patchpluginxml-task-sincebuild) properties. - The `apiVersion` property of the Kotlin configuration (if used) can't be higher than the Kotlin bundled with IDE in the version specified by the [`intellij.version`](#intellij-extension-version) or [`patchPluginXml.sinceBuild`](#patchpluginxml-task-sincebuild) properties. -For more details regarding the Java version used in the specific IntelliJ SDK, see [](build_number_ranges.md). +> For more details regarding the Java version used in the specific IntelliJ SDK, see [](build_number_ranges.md). + +- The dependency on the Kotlin Standard Library (stdlib) is automatically added when using the Gradle Kotlin plugin and may conflict with the version provided with the IntelliJ Platform. + +> Read more about controlling this behavior on [](kotlin.md#kotlin-standard-library).