Skip to content

Commit f16196e

Browse files
committed
Upgraded Kotlin to 1.9.0.
1 parent acb5c56 commit f16196e

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

build-logic/src/main/kotlin/org.sdkotlin.buildlogic.kotlin-project.gradle.kts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ plugins {
99
}
1010

1111
val javaTargetVersion = JavaVersion.VERSION_17.toString()
12-
val kotlinTargetVersion = "1.8"
1312

1413
kotlin {
1514
jvmToolchain {
@@ -25,8 +24,6 @@ tasks {
2524

2625
withType<KotlinCompile>().configureEach {
2726
kotlinOptions {
28-
languageVersion = kotlinTargetVersion
29-
apiVersion = kotlinTargetVersion
3027
jvmTarget = javaTargetVersion
3128
freeCompilerArgs = listOf(
3229
"-Xjsr305=strict",

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jackson = "2.15.1"
88
jackson-kogera = "2.14.2-alpha7"
99
jakarta-inject = "2.0.0"
1010
junit = "5.9.3" # Duplicated in unit-test-suite.gradle.kts.
11-
kotlin = "1.8.10" # See also `kotlinTargetVersion` in kotlin-project.gradle.kts.
12-
kotlinx-coroutines = "1.7.1"
11+
kotlin = "1.9.0" # See also `kotlinTargetVersion` in kotlin-project.gradle.kts.
12+
kotlinx-coroutines = "1.7.2"
1313
kotlinx-datetime = "0.4.0"
1414
log4j = "2.20.0"
1515
log4j-kotlin = "1.2.0"

0 commit comments

Comments
 (0)