From a43e11e08d57bd898efc72d6db94ed3d4b01f74f Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Mon, 14 Feb 2022 10:48:38 +0300 Subject: Shutdown coroutines dispatchers after each module pass (#2325) * Update kotlinx.coroutines to 1.6.0 * Shutdown common coroutines dispatchers after each module pass * Don't finalize coroutines in unit tests Co-authored-by: Mikhail Zarechenskiy --- runners/cli/src/main/kotlin/cli/main.kt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'runners/cli/src/main/kotlin') diff --git a/runners/cli/src/main/kotlin/cli/main.kt b/runners/cli/src/main/kotlin/cli/main.kt index 1dc32a45..4768828b 100644 --- a/runners/cli/src/main/kotlin/cli/main.kt +++ b/runners/cli/src/main/kotlin/cli/main.kt @@ -88,6 +88,8 @@ class GlobalArguments(args: Array) : DokkaConfiguration { description = "Suppress members inherited from other classes" ).default(DokkaDefaults.suppressInheritedMembers) + override val finalizeCoroutines: Boolean = true + val globalPackageOptions by parser.option( ArgType.String, description = "List of package source sets in format \"prefix,-deprecated,-privateApi,+warnUndocumented,+suppress;...\" " -- cgit