Skip to content

Commit 8a4dbd0

Browse files
upgrade kotlin version
1 parent 601d9a1 commit 8a4dbd0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

buildSrc/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ repositories {
99
}
1010

1111
dependencies {
12-
api("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23")
13-
api("org.jetbrains.dokka:dokka-gradle-plugin:1.9.20")
14-
api("org.jetbrains.dokka:dokka-base:1.9.20")
12+
api("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.0")
13+
api("org.jetbrains.dokka:dokka-gradle-plugin:2.0.0")
14+
api("org.jetbrains.dokka:dokka-base:2.0.0")
1515
api("org.moditect:moditect:1.0.0.RC1")
1616
api("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.6")
1717
}

ktorm-ksp-compiler-maven-plugin/ktorm-ksp-compiler-maven-plugin.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
compileOnly(kotlin("maven-plugin"))
1010
compileOnly(kotlin("compiler"))
1111
compileOnly("org.apache.maven:maven-core:3.9.3")
12-
implementation("com.google.devtools.ksp:symbol-processing-cmdline:1.9.23-1.0.20")
12+
implementation("com.google.devtools.ksp:symbol-processing-cmdline:2.1.0-1.0.29")
1313
implementation(project(":ktorm-ksp-compiler")) {
1414
exclude(group = "com.pinterest.ktlint", module = "ktlint-rule-engine")
1515
exclude(group = "com.pinterest.ktlint", module = "ktlint-ruleset-standard")

ktorm-ksp-compiler/ktorm-ksp-compiler.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
implementation(project(":ktorm-core"))
1010
implementation(project(":ktorm-ksp-annotations"))
1111
implementation(project(":ktorm-ksp-spi"))
12-
implementation("com.google.devtools.ksp:symbol-processing-api:1.9.23-1.0.20")
12+
implementation("com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29")
1313
implementation("com.squareup:kotlinpoet-ksp:1.11.0")
1414
implementation("org.atteo:evo-inflector:1.3")
1515
implementation("com.pinterest.ktlint:ktlint-rule-engine:0.50.0") {

ktorm-ksp-spi/ktorm-ksp-spi.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ plugins {
66
}
77

88
dependencies {
9-
api("com.google.devtools.ksp:symbol-processing-api:1.9.23-1.0.20")
9+
api("com.google.devtools.ksp:symbol-processing-api:2.1.0-1.0.29")
1010
api("com.squareup:kotlinpoet-ksp:1.11.0")
1111
}

0 commit comments

Comments
 (0)