Skip to content

Commit 11d66f1

Browse files
committed
chore: fix ksp and misc changes
1 parent 6884c69 commit 11d66f1

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

gradle/libs.versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
java = "26"
3-
kotlin = "2.2.20"
4-
kotlin-ksp = "2.2.20-2.0.3"
3+
kotlin = "2.3.0-Beta1"
4+
kotlin-ksp = "2.2.20-2.0.4"
55
kotlin-jvmtarget = "21"
66
kotlin-dsl-jvmtarget = "21"
77
kotlin-api-version = "2.3"
@@ -20,7 +20,7 @@ org-name = "suresh.dev"
2020
org-url = "https://suresh.dev"
2121

2222
# Dependency Versions
23-
bc-plugins = "2.9.2"
23+
bc-plugins = "2.9.3"
2424
kotlinx-kover = "0.9.2"
2525
kotlin-dokka = "2.1.0-Beta"
2626
kotlinx-io = "0.8.0"
@@ -89,22 +89,22 @@ classgraph = "4.8.181"
8989
cache4k = "0.14.0"
9090
intellij-coverage = "1.0.766"
9191
intellij-markdown = "0.7.3"
92-
jgit = "7.3.0.202506031305-r"
92+
jgit = "7.4.0.202509020913-r"
9393
jte = "3.2.1"
9494
sshj = "0.40.0"
9595
jsch = "2.27.3"
9696
pty4j = "0.13.11"
9797
oshi = "6.9.0"
9898
junit = "6.0.0"
9999
koin = "4.1.2-Beta1"
100-
koin-annotations = "2.2.0-RC4"
100+
koin-annotations = "2.2.0"
101101
metro = "0.4.0"
102102
kotest = "6.0.3"
103103
mockk = "1.14.6"
104104
mokkery = "3.0.0-Beta2"
105105
wiremock = "4.0.0-beta.15"
106106
wiremock-kotlin = "2.1.1"
107-
okhttp = "5.1.0"
107+
okhttp = "5.2.0"
108108
slf4j = "2.1.0-alpha1"
109109
logback = "1.5.19"
110110
logback-tyler = "1.0.2"
@@ -113,7 +113,7 @@ jmh = "1.37"
113113
mrjar = "0.1.1"
114114
ktfmt = "0.58"
115115
google-javaformat = "1.29.0"
116-
palantir-javaformat = "2.76.0"
116+
palantir-javaformat = "2.77.0"
117117
google-auto-value = "1.11.0"
118118
google-auto-service = "1.1.1"
119119
google-tink = "1.18.0"
@@ -256,7 +256,7 @@ github-depgraph = "0.1.0"
256256
github-changelog = "2.2.0"
257257
wire-plugin = "5.4.0"
258258
buildkonfig = "0.17.1"
259-
gmazzo-buildconfig = "5.6.8"
259+
gmazzo-buildconfig = "5.7.0"
260260
cyclonedx-plugin = "1.10.0"
261261
modulegraph = "0.12.1"
262262
exposed-plugin = "0.2.1"

plugins/project/src/main/kotlin/dev.suresh.plugin.kotlin.jvm.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
22
import com.google.cloud.tools.jib.gradle.JibTask
3-
import com.google.devtools.ksp.gradle.KspAATask
43
import common.*
54
import java.io.*
65
import java.util.spi.ToolProvider
@@ -93,7 +92,7 @@ tasks {
9392
buildConfig.configure { enabled = buildConfigExtn.enabled.get() }
9493

9594
kotlin.sourceSets.main { kotlin.srcDirs(buildConfig) }
96-
withType<KspAATask>().configureEach { dependsOn(buildConfig) }
95+
// withType<KspAATask>().configureEach { dependsOn(buildConfig) }
9796

9897
// Configure "compileJava" and "compileTestJava" tasks.
9998
withType<JavaCompile>().configureEach { configureJavac(project) }

plugins/project/src/main/kotlin/dev.suresh.plugin.kotlin.mpp.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
44
import com.google.cloud.tools.jib.gradle.JibTask
5-
import com.google.devtools.ksp.gradle.KspAATask
65
import common.*
76
import org.gradle.internal.os.OperatingSystem
87
import org.jetbrains.kotlin.gradle.targets.js.nodejs.*
@@ -137,7 +136,7 @@ tasks {
137136
buildConfig.configure { enabled = buildConfigExtn.enabled.get() }
138137

139138
kotlin.sourceSets.commonMain { kotlin.srcDirs(buildConfig) }
140-
withType<KspAATask>().configureEach { dependsOn(buildConfig) }
139+
// withType<KspAATask>().configureEach { dependsOn(buildConfig) }
141140
// compileKotlinMetadata { dependsOn(buildConfig) }
142141

143142
withType<KotlinNpmInstallTask>().configureEach { configureKotlinNpm() }

0 commit comments

Comments
 (0)