aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle/projects/it-multiplatform-0
diff options
context:
space:
mode:
authorKamil Doległo <kamilok1965@interia.pl>2020-08-11 21:47:26 +0200
committerSebastian Sellmair <34319766+sellmair@users.noreply.github.com>2020-08-19 13:34:10 +0200
commit852a6ce6c0f43c9b2044320dcceb4c6cc0a3b302 (patch)
treefb95be79e816769ca5305cf3a601348549000c6d /integration-tests/gradle/projects/it-multiplatform-0
parent822653f017fa58352148e1c586690debb6773965 (diff)
downloaddokka-852a6ce6c0f43c9b2044320dcceb4c6cc0a3b302.tar.gz
dokka-852a6ce6c0f43c9b2044320dcceb4c6cc0a3b302.tar.bz2
dokka-852a6ce6c0f43c9b2044320dcceb4c6cc0a3b302.zip
Refactor location providers
Diffstat (limited to 'integration-tests/gradle/projects/it-multiplatform-0')
-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/")
+ }
+ }
+ }
+}