Skip to content

Commit 08076a4

Browse files
committed
Update Kotlin and KSP
1 parent 5aa8362 commit 08076a4

File tree

5 files changed

+8
-16
lines changed

5 files changed

+8
-16
lines changed

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
kotlin-inject = "0.7.3-SNAPSHOT"
3-
kotlin = "2.1.10"
4-
ksp = "2.1.10-1.0.30"
3+
kotlin = "2.1.20"
4+
ksp = "2.1.20-2.0.0"
55
kotlinpoet = "2.0.0"
66
junit5 = "5.9.3"
77
jvmTarget = "11"

integration-tests/ksp-companion/build.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ dependencies {
1010
}
1111

1212
kotlin {
13-
jvm {
14-
withJava()
15-
}
13+
jvm()
1614

1715
sourceSets {
1816
commonMain {

integration-tests/ksp/build.gradle.kts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ dependencies {
1111
}
1212

1313
kotlin {
14-
jvm {
15-
withJava()
16-
}
14+
jvm()
1715

1816
sourceSets {
1917
commonMain {
@@ -67,7 +65,7 @@ kotlin {
6765
}
6866

6967
java {
70-
val test by sourceSets.existing {
68+
sourceSets.named("jvmTest").configure {
7169
java.srcDir("../common-jvm/src/test/java")
7270
}
7371
}

integration-tests/ksp1-companion/build.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ dependencies {
1212
}
1313

1414
kotlin {
15-
jvm {
16-
withJava()
17-
}
15+
jvm()
1816

1917
sourceSets {
2018
commonMain {

integration-tests/ksp1/build.gradle.kts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ dependencies {
1313
}
1414

1515
kotlin {
16-
jvm {
17-
withJava()
18-
}
16+
jvm()
1917

2018
sourceSets {
2119
commonMain {
@@ -69,7 +67,7 @@ kotlin {
6967
}
7068

7169
java {
72-
val test by sourceSets.existing {
70+
sourceSets.named("jvmTest").configure {
7371
java.srcDir("../common-jvm/src/test/java")
7472
}
7573
}

0 commit comments

Comments
 (0)