Skip to content

Commit

Permalink
项目配置
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Wu committed Jan 31, 2023
1 parent 4190be8 commit 074d505
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
id("java")
id("org.jetbrains.intellij") version "1.10.0"
id("org.jetbrains.intellij") version "1.12.0"
kotlin("jvm") version "1.7.22"
}

Expand All @@ -27,6 +27,14 @@ tasks {
patchPluginXml {
version.set("${project.version}")
sinceBuild.set("222")
changeNotes.set(
"""
<b>${project.version}</b><br/><br/>
<ul>
<li>Search Optimization.</li>
</ul>
"""
)
}

compileKotlin {
Expand Down Expand Up @@ -55,9 +63,9 @@ dependencies {

val compileKotlin: KotlinCompile by tasks
compileKotlin.kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
}
val compileTestKotlin: KotlinCompile by tasks
compileTestKotlin.kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
}

0 comments on commit 074d505

Please sign in to comment.