diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2020-08-19 04:30:52 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-08-19 13:34:10 +0200 |
commit | 6d22fac04d7a5e22379485ed62731f45f6b2d618 (patch) | |
tree | 1724ce628633d438087f25e650a4cfee03997ba8 /integration-tests/gradle | |
parent | c4e4343bdb8df16e49d4da118fccc076abdc928a (diff) | |
download | dokka-6d22fac04d7a5e22379485ed62731f45f6b2d618.tar.gz dokka-6d22fac04d7a5e22379485ed62731f45f6b2d618.tar.bz2 dokka-6d22fac04d7a5e22379485ed62731f45f6b2d618.zip |
Fix tests after the Gradle plugin update
Diffstat (limited to 'integration-tests/gradle')
-rw-r--r-- | integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts | 3 |
1 files changed, 2 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 27283fa2..5ee2ec36 100644 --- a/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts +++ b/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts @@ -26,7 +26,8 @@ tasks.withType<DokkaTask> { dokkaSourceSets { configureEach { externalDocumentationLink { - url = URL("https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/") + 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")) } } } |