aboutsummaryrefslogtreecommitdiff
path: root/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA
diff options
context:
space:
mode:
authorvmishenev <vad-mishenev@yandex.ru>2021-11-23 20:01:23 +0300
committerGitHub <noreply@github.com>2021-11-23 20:01:23 +0300
commite24ef5d0b4915505eaa3b06999ab196eac463ea7 (patch)
treeecf2cca8a5094bf0a1c22310741dd09675704dde /examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA
parent8d151d1b5c99cded45bd8d60919b17f797e36116 (diff)
downloaddokka-e24ef5d0b4915505eaa3b06999ab196eac463ea7.tar.gz
dokka-e24ef5d0b4915505eaa3b06999ab196eac463ea7.tar.bz2
dokka-e24ef5d0b4915505eaa3b06999ab196eac463ea7.zip
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
Diffstat (limited to 'examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA')
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA/build.gradle.kts3
-rw-r--r--examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA/src/main/kotlin/demo/ChildProjectAClass.kt8
2 files changed, 11 insertions, 0 deletions
diff --git a/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA/build.gradle.kts b/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA/build.gradle.kts
new file mode 100644
index 00000000..dd9f5199
--- /dev/null
+++ b/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA/build.gradle.kts
@@ -0,0 +1,3 @@
+dependencies {
+ implementation(kotlin("stdlib"))
+} \ No newline at end of file
diff --git a/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA/src/main/kotlin/demo/ChildProjectAClass.kt b/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA/src/main/kotlin/demo/ChildProjectAClass.kt
new file mode 100644
index 00000000..533b305c
--- /dev/null
+++ b/examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA/src/main/kotlin/demo/ChildProjectAClass.kt
@@ -0,0 +1,8 @@
+@file:Suppress("unused")
+
+package demo
+
+/**
+ * Class defined in child project a
+ */
+class ChildProjectAClass