Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ kotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
kotlinSpring = { id = "org.jetbrains.kotlin.plugin.spring", version.ref = "kotlin" }
kapt = { id = "org.jetbrains.kotlin.kapt", version.ref = "kotlin" }
ksp = { id = "com.google.devtools.ksp" }
dokka = { id = "org.jetbrains.dokka", version = "1.9.20" }
dokka = { id = "org.jetbrains.dokka", version = "2.2.0" }
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dokka 2 breaks Gradle tasks

High Severity

Raising org.jetbrains.dokka to 2.2.0 switches the project to Dokka Gradle Plugin v2 by default, which no longer registers v1 tasks such as dokkaHtml. The plugin-build module still calls tasks.named("dokkaHtml") and wires distTar to dokkaJavadocJar, so Gradle configuration or release packaging can fail until the build is migrated or compatibility mode is enabled.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 493e761. Configure here.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dokka 2.2.0 incompatible with project's default Kotlin 1.8.20

High Severity

Dokka 2.2.0 requires Kotlin Gradle Plugin 1.9.0 or higher, but the project defaults to Kotlin 1.8.20. The Dokka 2.2.0 release notes state that KGP API deprecation cleanup (#4271) makes both DGPv1 and DGPv2 compatible only with KGP 1.9.0+. Since BuildPluginsVersion.KOTLIN in Dependencies.kt defaults to "1.8.20", local builds and any CI runs without VERSION_KOTLIN set to 1.9+ will fail. This is independent of the DGPv1→v2 migration helpers issue.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit f5ec4f5. Configure here.

spotless = { id = "com.diffplug.spotless", version = "8.5.0" }
mavenPublish = { id = "com.vanniktech.maven.publish", version = "0.27.0" }
androidApplication = { id = "com.android.application", version.ref = "agp" }
Expand Down
Loading