From 23827bed7b4877b15633e1924f7ee3864f8ebe2c Mon Sep 17 00:00:00 2001 From: "sebastian.sellmair" Date: Fri, 31 Jul 2020 10:27:54 +0200 Subject: Cover GradleDokkaSourceSetBuilder with tests --- core/src/main/kotlin/configuration.kt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'core/src/main/kotlin') diff --git a/core/src/main/kotlin/configuration.kt b/core/src/main/kotlin/configuration.kt index fbe7ccfc..0c877bd4 100644 --- a/core/src/main/kotlin/configuration.kt +++ b/core/src/main/kotlin/configuration.kt @@ -44,6 +44,8 @@ enum class Platform(val key: String) { js.key -> js native.key -> native common.key -> common + "androidjvm", "android" -> jvm + "metadata" -> common else -> throw IllegalArgumentException("Unrecognized platform: $key") } } @@ -129,6 +131,7 @@ interface DokkaConfiguration : Serializable { interface ExternalDocumentationLink : Serializable { val url: URL val packageListUrl: URL + companion object } } -- cgit