Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ buildscript {

plugins {
kotlin("jvm")
id("org.jetbrains.intellij") version "1.12.0"
// TODO: The version need to be updated to the latest version 1.15.0.
// There will be configuration issues need to be solved after upgrading to the latest version 1.15.0.
id("org.jetbrains.intellij") version "1.13.2"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why pick this specific version instead of 1.14.0 or 1.15.0?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For now we can use the version 1.13.2 to unblock the current release. There will be more configuration issues to solve than expected when changing the version to 1.14.0 or 1.15.0. I added a TODO in the next commit.

}

repositories {
Expand Down Expand Up @@ -107,18 +109,18 @@ tasks {
compileKotlin {
kotlinOptions {
apiVersion = descriptor.kotlin.apiVersion
jvmTarget = "11"
jvmTarget = "17"
}
}

withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "11"
jvmTarget = "17"
}
}

withType<JavaCompile> {
options.release.set(11)
options.release.set(17)
}

buildPlugin {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ repositories {
}

dependencies {
api(kotlin("gradle-plugin", version = "1.9.0-Beta"))
api(kotlin("gradle-plugin", version = "1.9.0"))
}