aboutsummaryrefslogtreecommitdiff
path: root/core/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main')
-rw-r--r--core/src/main/kotlin/configuration.kt3
1 files changed, 3 insertions, 0 deletions
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
}
}