You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Supertypes of the following classes cannot be resolved. Please make sure you have the required dependencies in the classpath:
class org.jetbrains.dokka.gradle.GradleDokkaSourceSetBuilder, unresolved supertypes: org.jetbrains.dokka.DokkaConfigurationBuilder
Unless I add dokka-core as well
dependencies {
implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.4.20")
implementation("org.jetbrains.dokka:dokka-core:1.4.20") // this
}
where DokkaConfigurationBuilder is used as superclass and thus is part of the API and is needed by downstream projects in their compile class path.
So it should actually declare it as api dependency, not implementation dependency.
Adding dokka-core manually to your compile class path like you did works around this bug,
but imho you should report this to the dokka project.
The text was updated successfully, but these errors were encountered:
Describe the bug
If I try to apply Dokka to a precompiled script, I get
Unless I add
dokka-core
as wellExpected behaviour
Working fine without
dokka-core
To Reproduce
Clone this,
tmp
branch and try to syncDokka configuration
Installation
Additional context
Kudos to Björn for finding this out!
The text was updated successfully, but these errors were encountered: