From 6d22fac04d7a5e22379485ed62731f45f6b2d618 Mon Sep 17 00:00:00 2001 From: Kamil Doległo Date: Wed, 19 Aug 2020 04:30:52 +0200 Subject: Fix tests after the Gradle plugin update --- integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'integration-tests/gradle/projects/it-multiplatform-0') 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 { 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")) } } } -- cgit