aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts
diff options
context:
space:
mode:
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.kts13
1 files changed, 13 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
index a8d7b837..27283fa2 100644
--- a/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts
+++ b/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts
@@ -1,3 +1,6 @@
+import org.jetbrains.dokka.gradle.DokkaTask
+import java.net.URL
+
plugins {
kotlin("multiplatform")
id("org.jetbrains.dokka")
@@ -18,3 +21,13 @@ kotlin {
}
}
}
+
+tasks.withType<DokkaTask> {
+ dokkaSourceSets {
+ configureEach {
+ externalDocumentationLink {
+ url = URL("https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/")
+ }
+ }
+ }
+}