mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
Use kotlin.jvmToolchain(11)
shorthand in Gradle configuration
This commit is contained in:
parent
7625e67dff
commit
d7baec6675
@ -11,6 +11,7 @@
|
|||||||
- Dependencies - upgrade `org.jetbrains.kotlinx.kover` to `0.6.1`
|
- Dependencies - upgrade `org.jetbrains.kotlinx.kover` to `0.6.1`
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
- Use `kotlin.jvmToolchain(11)` shorthand in Gradle configuration
|
||||||
- Dependencies - upgrade `org.jetbrains.intellij` to `1.9.0`
|
- Dependencies - upgrade `org.jetbrains.intellij` to `1.9.0`
|
||||||
- Dependencies - upgrade `org.jetbrains.kotlin.jvm` to `1.7.20`
|
- Dependencies - upgrade `org.jetbrains.kotlin.jvm` to `1.7.20`
|
||||||
- Dependencies (GitHub Actions) - upgrade `JetBrains/qodana-action` to `v2022.2.2`
|
- Dependencies (GitHub Actions) - upgrade `JetBrains/qodana-action` to `v2022.2.2`
|
||||||
|
@ -27,9 +27,7 @@ repositories {
|
|||||||
|
|
||||||
// Set the JVM language level used to compile sources and generate files - Java 11 is required since 2020.3
|
// Set the JVM language level used to compile sources and generate files - Java 11 is required since 2020.3
|
||||||
kotlin {
|
kotlin {
|
||||||
jvmToolchain {
|
jvmToolchain(11)
|
||||||
languageVersion.set(JavaLanguageVersion.of(11))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Configure Gradle IntelliJ Plugin - read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
|
// Configure Gradle IntelliJ Plugin - read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
|
||||||
|
Loading…
Reference in New Issue
Block a user