dokkatooSourceSets
Dokka Source Sets describe the source code that should be included in a Dokka Publication.
Dokka will not generate documentation unless there is at least there is at least one Dokka Source Set.
TODO make sure dokkatooSourceSets doc is up to date...
Only source sets that are contained within this project should be included here. To merge source sets from other projects, use the Gradle dependencies block.
dependencies {
// merge :other-project into this project's Dokka Configuration
dokka(project(":other-project"))
}
Content copied to clipboard
Or, to include other Dokka Publications as a Dokka Module use
dependencies {
// include :other-project as a module in this project's Dokka Configuration
dokkaModule(project(":other-project"))
}
Content copied to clipboard
Dokka will merge Dokka Source Sets from other subprojects if...