https://kotlinlang.org logo
#dokka
Title
e

elect

03/24/2021, 9:34 PM
I have a conventional plugin for single module projects which works fine so far. Now comes multi-module.. according to the readme, this should suffice
Copy code
tasks {
    dokkaHtmlMultiModule.configure {
        outputDirectory.set(buildDir.resolve("dokkaCustomMultiModuleOutput"))
    }
}
but it doesnt, dir doesnt exist what am I missing? Edit: I simply had to manually execute it.. it's not automatic as the usual per-module dokka documentation
s

Stacy

04/07/2021, 3:24 PM
@elect Can you explain what you mean by manually execute? Is this a different command to execute other than
./gradle dokkaXXX
?
e

elect

04/07/2021, 3:29 PM
no, sorry, on my one-module project the docs were kicked in automatically because I was requiring the jar in the artifacts (I guess). In my multi-module this is not the case so I have to manually execute it as you write
4 Views