Skip to content

Commit 11bb405

Browse files
committed
chore: ksp2 update
1 parent f198753 commit 11bb405

File tree

5 files changed

+5
-15
lines changed

5 files changed

+5
-15
lines changed

gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ org.jetbrains.dokka.experimental.tryK2=true
4141
org.jetbrains.dokka.experimental.tryK2.nowarn=true
4242

4343
## KSP
44-
ksp.useKSP2=true
4544
ksp.version.check=false
4645

4746
# Compose

gradle/build-logic/gradle.properties

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,4 @@ kotlin.code.style=official
1818
kotlin.jvm.target.validation.mode=warning
1919

2020
# Snapshot Repo
21-
maven.snapshot.repo.enabled=false
22-
23-
# KSP
24-
ksp.useKSP2=true
21+
maven.snapshot.repo.enabled=false

gradle/build-logic/src/main/kotlin/dev.suresh.plugin.kotlin.jvm.gradle.kts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,7 @@ testing {
6262
}
6363
}
6464

65-
ksp {
66-
arg("autoserviceKsp.verify", "true")
67-
arg("autoserviceKsp.verbose", "true")
68-
allWarningsAsErrors = false
69-
}
65+
ksp { allWarningsAsErrors = false }
7066

7167
powerAssert { functions = listOf("kotlin.assert", "kotlin.test.assertTrue") }
7268

@@ -98,7 +94,7 @@ tasks {
9894
// Configure jvm args for JavaExec tasks except `run`
9995
withType<JavaExec>().matching { it.name != "run" }.configureEach { jvmArgs(jvmArguments()) }
10096

101-
// Configure KSP2
97+
// Configure KSP
10298
withType<KspAATask>().configureEach { configureKspConfig() }
10399

104100
withType<Jar>().configureEach {

gradle/build-logic/src/main/kotlin/dev.suresh.plugin.kotlin.mpp.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,6 @@ kotlin {
7373
}
7474

7575
ksp {
76-
arg("autoserviceKsp.verify", "true")
77-
arg("autoserviceKsp.verbose", "true")
7876
allWarningsAsErrors = false
7977
// excludedSources.from(generateCodeTask)
8078
}

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
java = "25"
33
kotlin = "2.1.20"
4-
kotlin-ksp = "2.1.20-1.0.32"
4+
kotlin-ksp = "2.1.20-2.0.0"
55
kotlin-jvmtarget = "21"
66
kotlin-dsl-jvmtarget = "21"
77
kotlin-api-version = "2.1"
@@ -51,7 +51,7 @@ kopy = "0.15.0+2.1.20"
5151
poko = "0.18.5"
5252
mappie = "2.1.20-1.2.1"
5353
akkurate = "0.11.0"
54-
kaml = "0.74.0"
54+
kaml = "0.75.0"
5555
snakeyaml-engine-kmp = "3.1.1"
5656
konsist = "0.17.3"
5757
decoroutinator = "2.4.8"

0 commit comments

Comments
 (0)