Skip to content

Commit

Permalink
Updates 'org.jetbrains.intellij' version to fix the task failure of d…
Browse files Browse the repository at this point in the history
…ownloadZipSigner. (#54)
  • Loading branch information
linlin-s authored Jul 19, 2023
1 parent 41908e1 commit 7b32caa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
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"
}

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"))
}

0 comments on commit 7b32caa

Please sign in to comment.