diff options
Diffstat (limited to 'examples/gradle/dokka-multimodule-example/parentProject/childProjectA/build.gradle.kts')
-rw-r--r-- | examples/gradle/dokka-multimodule-example/parentProject/childProjectA/build.gradle.kts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/gradle/dokka-multimodule-example/parentProject/childProjectA/build.gradle.kts b/examples/gradle/dokka-multimodule-example/parentProject/childProjectA/build.gradle.kts index b3c42aba..e13819a1 100644 --- a/examples/gradle/dokka-multimodule-example/parentProject/childProjectA/build.gradle.kts +++ b/examples/gradle/dokka-multimodule-example/parentProject/childProjectA/build.gradle.kts @@ -9,10 +9,12 @@ dependencies { implementation(kotlin("stdlib")) } +// configuration specific to this subproject. +// notice the use of Partial task tasks.withType<DokkaTaskPartial>().configureEach { dokkaSourceSets { configureEach { - includes.from("Module.md") + includes.from("ModuleA.md") } } } |