@@ -7,18 +7,18 @@ version = project.properties["version"] ?: "1.0-SNAPSHOT"
7
7
8
8
plugins {
9
9
id(" java" )
10
- kotlin(" kapt" ) version " 2.0.21 "
10
+ kotlin(" kapt" ) version " 2.2.0 "
11
11
id(" org.jetbrains.intellij.platform" ) version " 2.3.0"
12
12
13
- id(" org.jetbrains.kotlin.jvm" ) version " 2.0.21 "
14
- id(" org.jetbrains.kotlin.plugin.serialization" ) version " 2.0.21 "
13
+ id(" org.jetbrains.kotlin.jvm" ) version " 2.2.0 "
14
+ id(" org.jetbrains.kotlin.plugin.serialization" ) version " 2.2.0 "
15
15
}
16
16
17
17
// region Build, dependencies
18
18
19
19
java {
20
- sourceCompatibility = JavaVersion .VERSION_17
21
- targetCompatibility = JavaVersion .VERSION_17
20
+ sourceCompatibility = JavaVersion .VERSION_21
21
+ targetCompatibility = JavaVersion .VERSION_21
22
22
}
23
23
24
24
repositories {
@@ -57,7 +57,7 @@ val product = products.first { it.releaseType == (System.getenv("RELEASE_TYPE")
57
57
58
58
val verifyOldVersions = System .getenv(" VERIFY_VERSIONS" ) == " old"
59
59
60
- val kotlinVersion = " 2.0.21 "
60
+ val kotlinVersion = " 2.2.0 "
61
61
val arrowVersion = " 0.11.0"
62
62
63
63
dependencies {
@@ -90,7 +90,7 @@ dependencies {
90
90
91
91
kotlin {
92
92
compilerOptions {
93
- jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_17 )
93
+ jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_21 )
94
94
freeCompilerArgs = listOf (" -Xjvm-default=all-compatibility" )
95
95
}
96
96
}
0 commit comments