Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes release error causing release.yml workflow fail. #53

Closed
wants to merge 2 commits into from
Closed
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
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {

plugins {
kotlin("jvm")
id("org.jetbrains.intellij") version "1.12.0"
id("org.jetbrains.intellij") version "1.13.2"
}

repositories {
Expand All @@ -38,7 +38,7 @@ val plugins = listOf(
platformType = PlatformType.IdeaCommunity,
sourceFolder = "IC-231",
kotlin = KotlinOptions(
apiVersion = "1.6"
apiVersion = "1.7"
),
dependencies = listOf("java", "Kotlin")
)
Expand All @@ -55,7 +55,7 @@ val pluginGroup: String by project
// `pluginName_` variable ends with `_` because of the collision with Kotlin magic getter in the `intellij` closure.
// Read more about the issue: https://github.com/JetBrains/intellij-platform-plugin-template/issues/29
val pluginName_: String by project
val pluginVersion: String = pluginVersion(major = "2", minor = "3", patch = "0")
val pluginVersion: String = pluginVersion(major = "2", minor = "3", patch = "1")
val pluginDescriptionFile: String by project
val pluginChangeNotesFile: String by project

Expand Down Expand Up @@ -107,18 +107,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"))
}
Loading