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/settings.gradle.kts | |
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/settings.gradle.kts')
-rw-r--r-- | examples/gradle/dokka-versioning-multimodule-example/settings.gradle.kts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/gradle/dokka-versioning-multimodule-example/settings.gradle.kts b/examples/gradle/dokka-versioning-multimodule-example/settings.gradle.kts new file mode 100644 index 00000000..ec6614f0 --- /dev/null +++ b/examples/gradle/dokka-versioning-multimodule-example/settings.gradle.kts @@ -0,0 +1,5 @@ +include(":parentProject") +include(":parentProject:childProjectA") +include(":parentProject:childProjectB") + +rootProject.name = "dokka-versioning-multimodule-example"
\ No newline at end of file |