Colin White
04/13/2021, 9:50 PMdokkaHtmlMultimodule
, however that task doesn’t exist. Also the most recent release notes mention I should use dokkaHtmlPartial
, however that doesn’t work as then my navigation.html
only contains the classes from one module. Am I missing something?Javier
04/13/2021, 10:20 PMjw
04/13/2021, 11:09 PMjw
04/13/2021, 11:09 PMColin White
04/14/2021, 1:03 AMColin White
04/14/2021, 1:07 AMjw
04/14/2021, 2:04 AMColin White
04/14/2021, 2:21 AMKamil Doległo
04/14/2021, 12:55 PMCan’t exclude subprojects that I could see digging in the sources@jw Can you please elaborate? Excluding subprojects should be fairly easy, either by removing the plugin from them or by removing them from
childDokkaTasks
in the root taskjw
04/14/2021, 12:59 PMKamil Doległo
04/14/2021, 1:04 PMdokkaHtmlMultiModule {
removeChildTasks(
listOf(
project(":subprojectA"),
project(":subprojectB")
)
)
}
which is easy IMHOjw
04/14/2021, 1:13 PMJavier
04/14/2021, 1:16 PMKamil Doległo
04/14/2021, 1:20 PMis it not more comfortable a flag in the specific module?Well flag in the specific module is not a good thing IMHO, but you can always disable the task in that module:
dokkaHtmlPartial {
enabled=false
}
jw
04/14/2021, 1:31 PMjw
04/14/2021, 1:42 PM