using_kotlin.md: note about Gradle 1.x

This commit is contained in:
Yann Cébron 2024-07-30 14:36:14 +02:00
parent 72e4588206
commit 61d784887e

View File

@ -86,12 +86,12 @@ For detailed instructions, please refer to the [Kotlin documentation](https://ko
Adding Kotlin source files compilation support to the Gradle-based project requires adding and configuring the [Kotlin JVM Gradle plugin](https://kotlinlang.org/docs/gradle.html#targeting-the-jvm). Adding Kotlin source files compilation support to the Gradle-based project requires adding and configuring the [Kotlin JVM Gradle plugin](https://kotlinlang.org/docs/gradle.html#targeting-the-jvm).
See the <path>build.gradle.kts</path> from [kotlin_demo](%gh-sdk-samples-master%/kotlin_demo) sample plugin: See the <path>build.gradle.kts</path> from [kotlin_demo](%gh-sdk-samples-master%/kotlin_demo) sample plugin using [](tools_gradle_intellij_plugin.md):
```kotlin ```kotlin
``` ```
{src="kotlin_demo/build.gradle.kts" include-lines="2-"} {src="kotlin_demo/build.gradle.kts" include-lines="2-" default-state="collapsed" collapsible="true" collapsed-title="build.gradle.kts"}
### Kotlin Standard Library (stdlib) ### Kotlin Standard Library (stdlib)
{id="kotlin-standard-library"} {id="kotlin-standard-library"}