aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts
diff options
context:
space:
mode:
authorsebastian.sellmair <sebastian.sellmair@jetbrains.com>2020-07-02 11:12:49 +0200
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-07-02 12:48:53 +0200
commit11a80c62d09d89803016c0feb3f41678bff41cfd (patch)
treea49e3ab7f4b6816c706073be462a014d21d77fde /integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts
parent76132da3437873f5483b8a7ce03b1028fa37d139 (diff)
downloaddokka-11a80c62d09d89803016c0feb3f41678bff41cfd.tar.gz
dokka-11a80c62d09d89803016c0feb3f41678bff41cfd.tar.bz2
dokka-11a80c62d09d89803016c0feb3f41678bff41cfd.zip
Add basic multiplatform gradle integration test
Diffstat (limited to 'integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts')
-rw-r--r--integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts25
1 files changed, 25 insertions, 0 deletions
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")
+ }
+}