diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2020-08-11 21:47:26 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-08-19 13:34:10 +0200 |
commit | 852a6ce6c0f43c9b2044320dcceb4c6cc0a3b302 (patch) | |
tree | fb95be79e816769ca5305cf3a601348549000c6d /integration-tests/gradle/projects/it-multiplatform-0 | |
parent | 822653f017fa58352148e1c586690debb6773965 (diff) | |
download | dokka-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.kts | 13 |
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/") + } + } + } +} |