-
-
Notifications
You must be signed in to change notification settings - Fork 37
build(deps): bump org.jetbrains.dokka from 1.9.20 to 2.2.0 #1208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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" } | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Dokka 2.2.0 incompatible with project's default Kotlin 1.8.20High 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 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" } | ||
|
|
||


There was a problem hiding this comment.
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.dokkato2.2.0switches the project to Dokka Gradle Plugin v2 by default, which no longer registers v1 tasks such asdokkaHtml. Theplugin-buildmodule still callstasks.named("dokkaHtml")and wiresdistTartodokkaJavadocJar, so Gradle configuration or release packaging can fail until the build is migrated or compatibility mode is enabled.Reviewed by Cursor Bugbot for commit 493e761. Configure here.