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.
  • Loading branch information
linlin-s committed Jul 19, 2023
1 parent 41908e1 commit 6207162
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 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 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"))
}

0 comments on commit 6207162

Please sign in to comment.