diff options
Diffstat (limited to 'examples/gradle/dokka-multimodule-example/parentProject/childProjectB')
-rw-r--r-- | examples/gradle/dokka-multimodule-example/parentProject/childProjectB/ModuleB.md (renamed from examples/gradle/dokka-multimodule-example/parentProject/childProjectB/Module.md) | 2 | ||||
-rw-r--r-- | examples/gradle/dokka-multimodule-example/parentProject/childProjectB/build.gradle.kts | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/examples/gradle/dokka-multimodule-example/parentProject/childProjectB/Module.md b/examples/gradle/dokka-multimodule-example/parentProject/childProjectB/ModuleB.md index 27031edf..18a92a33 100644 --- a/examples/gradle/dokka-multimodule-example/parentProject/childProjectB/Module.md +++ b/examples/gradle/dokka-multimodule-example/parentProject/childProjectB/ModuleB.md @@ -1,5 +1,5 @@ # Module childProjectB -This is the child module b +This is the child module B # Package demo This package contains a few examples of Dokka usage. diff --git a/examples/gradle/dokka-multimodule-example/parentProject/childProjectB/build.gradle.kts b/examples/gradle/dokka-multimodule-example/parentProject/childProjectB/build.gradle.kts index b3c42aba..089813a8 100644 --- a/examples/gradle/dokka-multimodule-example/parentProject/childProjectB/build.gradle.kts +++ b/examples/gradle/dokka-multimodule-example/parentProject/childProjectB/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("ModuleB.md") } } } |