mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
Gradle - cleanup the jvmToolchain
setup
This commit is contained in:
parent
281eacf728
commit
8ddc338d23
@ -7,6 +7,7 @@
|
||||
### Changed
|
||||
|
||||
- Gradle - upgrade `org.gradle.toolchains.foojay-resolver-convention` to `0.8.0`
|
||||
- Gradle - cleanup the `jvmToolchain` setup
|
||||
|
||||
### Fixed
|
||||
|
||||
|
@ -26,13 +26,9 @@ dependencies {
|
||||
// implementation(libs.annotations)
|
||||
}
|
||||
|
||||
// Set the JVM language level used to build the project. Use Java 11 for 2020.3+, and Java 17 for 2022.2+.
|
||||
// Set the JVM language level used to build the project.
|
||||
kotlin {
|
||||
@Suppress("UnstableApiUsage")
|
||||
jvmToolchain {
|
||||
languageVersion = JavaLanguageVersion.of(17)
|
||||
vendor = JvmVendorSpec.JETBRAINS
|
||||
}
|
||||
jvmToolchain(17)
|
||||
}
|
||||
|
||||
// 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