File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
22
33plugins {
44 id(" java" )
5- id(" org.jetbrains.intellij" ) version " 1.10 .0"
5+ id(" org.jetbrains.intellij" ) version " 1.12 .0"
66 kotlin(" jvm" ) version " 1.7.22"
77}
88
@@ -27,6 +27,14 @@ tasks {
2727 patchPluginXml {
2828 version.set(" ${project.version} " )
2929 sinceBuild.set(" 222" )
30+ changeNotes.set(
31+ """
32+ <b>${project.version} </b><br/><br/>
33+ <ul>
34+ <li>Search Optimization.</li>
35+ </ul>
36+ """
37+ )
3038 }
3139
3240 compileKotlin {
@@ -55,9 +63,9 @@ dependencies {
5563
5664val compileKotlin: KotlinCompile by tasks
5765compileKotlin.kotlinOptions {
58- jvmTarget = " 1.8 "
66+ jvmTarget = " 17 "
5967}
6068val compileTestKotlin: KotlinCompile by tasks
6169compileTestKotlin.kotlinOptions {
62- jvmTarget = " 1.8 "
70+ jvmTarget = " 17 "
6371}
You can’t perform that action at this time.
0 commit comments