aboutsummaryrefslogtreecommitdiff
path: root/examples/gradle/dokka-multimodule-example/parentProject/childProjectA
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gradle/dokka-multimodule-example/parentProject/childProjectA')
-rw-r--r--examples/gradle/dokka-multimodule-example/parentProject/childProjectA/ModuleA.md (renamed from examples/gradle/dokka-multimodule-example/parentProject/childProjectA/Module.md)2
-rw-r--r--examples/gradle/dokka-multimodule-example/parentProject/childProjectA/build.gradle.kts4
2 files changed, 4 insertions, 2 deletions
diff --git a/examples/gradle/dokka-multimodule-example/parentProject/childProjectA/Module.md b/examples/gradle/dokka-multimodule-example/parentProject/childProjectA/ModuleA.md
index e6cf0e04..12712d97 100644
--- a/examples/gradle/dokka-multimodule-example/parentProject/childProjectA/Module.md
+++ b/examples/gradle/dokka-multimodule-example/parentProject/childProjectA/ModuleA.md
@@ -1,5 +1,5 @@
# Module childProjectA
-This is the child module a
+This is the child module A
# Package demo
This package contains a few examples of Dokka usage.
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")
}
}
}