I don’t know gradle well enough to configure the l...
# dokka
e
I don’t know gradle well enough to configure the latest dev version of dokka (which I’d like to do since the release version didn’t work for me). I added this to my module’s
build.gradle
file:
Copy code
implementation 'org.jetbrains.dokka:dokka-base:0.11.0-dev-45'
but don’t know what else to add to get a dokka task.
g
I don’t think that you should add dependency on dokka, this will make you project depend on dokka code, which not what you probably want
you should apply gradle plugin
I didn’t try 0.11, but it should be the same as this: https://github.com/Kotlin/dokka#using-the-gradle-plugin
But because it dev version I’m not sure in which repo it is, you have to add it
I even not sure that it published somewhere
e
Thanks. I guess I’ll just wait until the plugin is updated.
a