From 852a6ce6c0f43c9b2044320dcceb4c6cc0a3b302 Mon Sep 17 00:00:00 2001 From: Kamil Doległo Date: Tue, 11 Aug 2020 21:47:26 +0200 Subject: Refactor location providers --- .../gradle/projects/it-multiplatform-0/build.gradle.kts | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'integration-tests/gradle/projects') 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 { + dokkaSourceSets { + configureEach { + externalDocumentationLink { + url = URL("https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/") + } + } + } +} -- cgit