Bryan Herbst
05/06/2021, 7:31 PMdokkaGfmMultiModule
working well for me for the most part, only complaint is that right now I’m getting an extraneous module directory for each module, so if I have a moduleA
, I get:
- docsRoot
- moduleA
- moduleA
- package-list
- [etc]
- index.md
Is that intended?Bryan Herbst
05/06/2021, 7:32 PMdokkaGfmMultiModule {
outputDirectory = file("docs/api")
}
Module level config:
dokkaGfmPartial {
dokkaSourceSets {
named("main") {
def docFiles = ["module.md", "packages.md"]
docFiles = docFiles.findAll { project.file(it).exists() }
reportUndocumented.set(false)
skipDeprecated.set(true)
jdkVersion.set(8)
includeNonPublic.set(false)
includes.from(docFiles)
}
}
}
Marcin Aman
05/07/2021, 7:45 AMBryan Herbst
05/07/2021, 11:36 AMgroup/moduleA
, not moduleA/moduleA
)Bryan Herbst
05/07/2021, 12:08 PMgroup/moduleA/moduleA/index.md)
.Bryan Herbst
05/12/2021, 9:09 PMMarcin Aman
05/13/2021, 8:07 AMBryan Herbst
05/13/2021, 11:04 AM