From 11a80c62d09d89803016c0feb3f41678bff41cfd Mon Sep 17 00:00:00 2001 From: "sebastian.sellmair" Date: Thu, 2 Jul 2020 11:12:49 +0200 Subject: Add basic multiplatform gradle integration test --- .../projects/it-multiplatform-0/build.gradle.kts | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts (limited to 'integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts') diff --git a/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts b/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts new file mode 100644 index 00000000..1059f21a --- /dev/null +++ b/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts @@ -0,0 +1,25 @@ +import org.jetbrains.dokka.gradle.dokka + +plugins { + kotlin("multiplatform") + id("org.jetbrains.dokka") +} + +apply(from = "../template.root.gradle.kts") + +kotlin { + jvm() + linuxX64("linux") + macosX64("macos") + js() +} + +dokka { + dokkaSourceSets { + create("commonMain") + create("jvmMain") + create("linuxMain") + create("macosMain") + create("jsMain") + } +} -- cgit