Skip to content

Commit 40aa330

Browse files
committed
chore: kotlin 2.2.20-Beta1 update (disabled exoquery and redacted)
1 parent 23071a1 commit 40aa330

File tree

8 files changed

+1314
-6927
lines changed

8 files changed

+1314
-6927
lines changed

backend/jvm/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
dev.suresh.plugin.graalvm
1212
com.gradleup.shadow
1313
alias(libs.plugins.jetbrains.ktor)
14-
alias(libs.plugins.exoquery)
14+
// alias(libs.plugins.exoquery)
1515
dev.suresh.plugin.publishing
1616
// alias(libs.plugins.jetbrains.exposed)
1717
}

build.gradle.kts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ plugins {
77
description = "Kotlin Multiplatform Playground!"
88

99
dependencies {
10-
dokka(projects.shared)
11-
dokka(projects.meta.ksp.processor)
12-
dokka(projects.meta.compiler.plugin)
13-
dokka(projects.backend.jvm)
14-
dokka(projects.backend.data)
15-
dokka(projects.backend.profiling)
16-
dokka(projects.backend.security)
17-
dokka(projects.web)
10+
dokka(project(":shared"))
11+
dokka(project(":meta:ksp:processor"))
12+
dokka(project(":meta:compiler:plugin"))
13+
dokka(project(":backend:jvm"))
14+
dokka(project(":backend:data"))
15+
dokka(project(":backend:profiling"))
16+
dokka(project(":backend:security"))
1817

18+
findProject(":web")?.let { dokka(it) }
1919
findProject(":backend:native")?.let { dokka(it) }
2020
findProject(":compose:cmp")?.let { dokka(it) }
2121
findProject(":compose:html")?.let { dokka(it) }

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ tasks {
9292
}
9393
}
9494

95+
withType<AbstractTestTask>().configureEach { failOnNoDiscoveredTests = false }
96+
9597
// register<Copy>("copyTemplates") {
9698
// description = "Generate template classes"
9799
// group = LifecycleBasePlugin.BUILD_GROUP

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ powerAssert {
7272
}
7373

7474
redacted {
75-
enabled = true
75+
enabled = false
7676
replacementString = ""
7777
}
7878

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ powerAssert {
8585
}
8686

8787
redacted {
88-
enabled = true
88+
enabled = false
8989
replacementString = ""
9090
}
9191

@@ -186,8 +186,6 @@ plugins.withType<NodeJsPlugin> {
186186

187187
rootProject.the<NpmExtension>().apply {
188188
lockFileDirectory = project.rootDir.resolve("gradle/kotlin-js-store")
189-
packageLockMismatchReport = LockFileMismatchReport.WARNING
190-
packageLockAutoReplace = false
191189
}
192190
}
193191

@@ -199,8 +197,6 @@ plugins.withType<WasmNodeJsPlugin> {
199197
}
200198
rootProject.the<WasmNpmExtension>().apply {
201199
lockFileDirectory = project.rootDir.resolve("gradle/kotlin-js-store/wasm")
202-
packageLockMismatchReport = LockFileMismatchReport.WARNING
203-
packageLockAutoReplace = false
204200
}
205201
}
206202

0 commit comments

Comments
 (0)