diff options
author | sebastian.sellmair <sebastian.sellmair@jetbrains.com> | 2020-08-20 10:19:27 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-08-20 11:45:23 +0200 |
commit | a7dec28a206ffb7fdeede1743edfd318bd1e2920 (patch) | |
tree | 82526639816613dce42a820ba81d036e4cf9bb41 /integration-tests/gradle | |
parent | ace3fe828e1b6db055ae5592c5c8c57c3c1aaa8f (diff) | |
download | dokka-a7dec28a206ffb7fdeede1743edfd318bd1e2920.tar.gz dokka-a7dec28a206ffb7fdeede1743edfd318bd1e2920.tar.bz2 dokka-a7dec28a206ffb7fdeede1743edfd318bd1e2920.zip |
Fix convention for ExternalDocumentationLink#packageListUrl
Diffstat (limited to 'integration-tests/gradle')
-rw-r--r-- | integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts | 2 |
1 files changed, 1 insertions, 1 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 fb0e4b7c..9f93c2cd 100644 --- a/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts +++ b/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts @@ -27,7 +27,7 @@ tasks.withType<DokkaTask>().configureEach { configureEach { externalDocumentationLink { url.set(URL("https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/")) - packageListUrl.set(URL("https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/package-list")) + //packageListUrl.set(URL("https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/package-list")) } } } |