From e24ef5d0b4915505eaa3b06999ab196eac463ea7 Mon Sep 17 00:00:00 2001 From: vmishenev Date: Tue, 23 Nov 2021 20:01:23 +0300 Subject: Add sample project of versioning multi module (#2170) * Add sample project of versioning multi module * Add sample task to generate previously docs * Update Gradle version * Update Kotlin version --- .../parentProject/childProjectB/build.gradle.kts | 3 +++ .../childProjectB/src/main/kotlin/demo/ChildProjectBClass.kt | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectB/build.gradle.kts create mode 100644 examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectB/src/main/kotlin/demo/ChildProjectBClass.kt (limited to 'examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectB') diff --git a/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectB/build.gradle.kts b/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectB/build.gradle.kts new file mode 100644 index 00000000..fceff829 --- /dev/null +++ b/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectB/build.gradle.kts @@ -0,0 +1,3 @@ +dependencies { + implementation(kotlin("stdlib")) +} diff --git a/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectB/src/main/kotlin/demo/ChildProjectBClass.kt b/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectB/src/main/kotlin/demo/ChildProjectBClass.kt new file mode 100644 index 00000000..6bfd22eb --- /dev/null +++ b/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectB/src/main/kotlin/demo/ChildProjectBClass.kt @@ -0,0 +1,8 @@ +@file:Suppress("unused") + +package demo + +/** + * Class defined in child module b + */ +class ChildProjectBClass -- cgit