From f03083d7534209ad94dc3c4d7afd17f58e58127d Mon Sep 17 00:00:00 2001 From: vmishenev Date: Wed, 28 Jul 2021 14:57:38 +0300 Subject: Migrate Dokka examples to Dokka repo (KT-47798) (#2030) * Migrate Dokka examples to Dokka repo (KT-47798) * Configure workflow of examples checking * Add workflow to deploy examples --- .../gradle/dokka-multimodule-example/settings.gradle.kts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 examples/gradle/dokka-multimodule-example/settings.gradle.kts (limited to 'examples/gradle/dokka-multimodule-example/settings.gradle.kts') diff --git a/examples/gradle/dokka-multimodule-example/settings.gradle.kts b/examples/gradle/dokka-multimodule-example/settings.gradle.kts new file mode 100644 index 00000000..20bdfe65 --- /dev/null +++ b/examples/gradle/dokka-multimodule-example/settings.gradle.kts @@ -0,0 +1,12 @@ +pluginManagement { + plugins { + kotlin("jvm") version "1.4.32" + id("org.jetbrains.dokka") version ("1.4.32") + } +} + +include(":parentProject") +include(":parentProject:childProjectA") +include(":parentProject:childProjectB") + +rootProject.name = "dokka-multimodule-example" -- cgit