diff options
author | vmishenev <vad-mishenev@yandex.ru> | 2021-11-23 20:01:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-23 20:01:23 +0300 |
commit | e24ef5d0b4915505eaa3b06999ab196eac463ea7 (patch) | |
tree | ecf2cca8a5094bf0a1c22310741dd09675704dde /examples/gradle/dokka-versioning-multimodule-example/parentProject/childProjectA | |
parent | 8d151d1b5c99cded45bd8d60919b17f797e36116 (diff) | |
download | dokka-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')
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 |