Hello, I want to develop a custom Dokka plugin. Th...
# dokka
j
Hello, I want to develop a custom Dokka plugin. The code is in a project's module (it is a Gradle multi-module project). How can I use it from other module? (I'm using Dokka 1.7.10) and this is the Dokka task declaration:
Copy code
tasks.register<DokkaTask>("customDokka") {
    dependencies {
        plugins(project(":custom_dokka"))
    }
}
What more should I add to the above code in order to run the extensions defined in that plugin? Thanks in advance!
i
Hi! Not sure what exactly the problem/question is: are you unable to add the dependency or register your extensions/etc? We have revised Developer Guides and we now have a section on Plugin Development with a simple plugin tutorial, perhaps it can clear things up
j
Thanks, I was checking the 1.7.10 documentation. By the way, published docs are outdated
i
1.7.20 is not yet released, so the documentation I linked is coming straight from the
master
branch 🙂 The main stable documentation will be updated with the release