11plugins {
2- id(" org.jetbrains.kotlin.jvm" ) version " 1.8.0 "
2+ id(" org.jetbrains.kotlin.jvm" ) version " 1.8.21 "
33 id(" org.jetbrains.intellij" ) version " 1.13.3"
44}
55group = " shop.itbug"
6- version = " 3.3.1 "
6+ version = " 3.3.2 "
77repositories {
88 mavenCentral()
99 google()
@@ -28,6 +28,14 @@ intellij {
2828 )
2929}
3030
31+ kotlin {
32+ sourceSets.all {
33+ languageSettings {
34+ languageVersion = " 2.0"
35+ }
36+ }
37+ }
38+
3139// /
3240dependencies {
3341 implementation(" com.squareup.retrofit2:retrofit:2.9.0" ) {
@@ -111,16 +119,24 @@ tasks {
111119
112120 withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > ().configureEach {
113121 kotlinOptions.freeCompilerArgs + = " -opt-in=kotlin.RequiresOptIn"
122+ compilerOptions.languageVersion.set(org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_1_9 )
114123 }
115124
116125 listProductsReleases {
117126 }
118127
119128 patchPluginXml {
120- sinceBuild.set(" 231.0000.* " )
121- untilBuild.set(" 231.9999. *" )
129+ sinceBuild.set(" 231" )
130+ untilBuild.set(" 231.*" )
122131 changeNotes.set(
123132 """
133+ <div>
134+ <h1>3.3.2</h1>
135+ <ul>
136+ <li>Optimize the Dio request window tool</li>
137+ </ul>
138+ </div>
139+
124140 <div>
125141 <h1>3.3.1</h1>
126142 <ul>
@@ -303,15 +319,6 @@ tasks {
303319}
304320
305321configurations.all {
306- // exclude(group = "org.jetbrains.kotlinx",module = "kotlinx-coroutines-core")
307- // exclude(group = "org.jetbrains.kotlinx",module = "kotlinx-coroutines-core-jvm")
308- // exclude(group = "org.jetbrains.kotlinx",module = "kotlinx-coroutines-jdk8")
309- // exclude(group = "org.jetbrains.kotlinx",module = "kotlinx-coroutines-slf4j")
310- // exclude(group = "org.jetbrains.kotlin",module = "kotlin-stdlib")
311- // exclude(group = "org.jetbrains.kotlin",module = "kotlin-stdlib-common")
312- // exclude(group = "org.jetbrains.kotlin",module = "kotlin-stdlib-jdk7")
313- // exclude(group = "org.jetbrains.kotlin",module = "kotlin-stdlib-jdk8")
314- // exclude(group = "org.slf4j",module = "slf4j-api")
315322 exclude(group = " io.ktor" , module = " kotlinx-coroutines-jdk8" )
316323 exclude(group = " io.ktor" , module = " kotlinx-coroutines-core" )
317324 exclude(group = " com.aallam.openai" , module = " kotlinx-coroutines-jdk8" )
0 commit comments