diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2023-05-31 13:53:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-31 13:53:07 +0200 |
commit | 63bed7cb2e47eb46772e680982c33ed3ee624c31 (patch) | |
tree | 3355f5c18c9d755caffa6f2fb6ca24a2f91a1acc /runners/maven-plugin/src | |
parent | f45750699d089e0101dcde5d38c7e08ec2f03708 (diff) | |
download | dokka-63bed7cb2e47eb46772e680982c33ed3ee624c31.tar.gz dokka-63bed7cb2e47eb46772e680982c33ed3ee624c31.tar.bz2 dokka-63bed7cb2e47eb46772e680982c33ed3ee624c31.zip |
Fix missing tab entries for module names with space (#3019)
Diffstat (limited to 'runners/maven-plugin/src')
-rw-r--r-- | runners/maven-plugin/src/main/kotlin/DokkaMojo.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runners/maven-plugin/src/main/kotlin/DokkaMojo.kt b/runners/maven-plugin/src/main/kotlin/DokkaMojo.kt index c82f1b59..64293332 100644 --- a/runners/maven-plugin/src/main/kotlin/DokkaMojo.kt +++ b/runners/maven-plugin/src/main/kotlin/DokkaMojo.kt @@ -353,6 +353,12 @@ abstract class AbstractDokkaMojo(private val defaultDokkaPlugins: List<Dependenc } } + if (moduleName.contains(',')) { + // To figure out why this is needed and if it is still relevant, see the comment here: + // https://github.com/Kotlin/dokka/issues/3011#issuecomment-1568620493 + throw IllegalArgumentException("Module name cannot contain commas as it is used internally as a delimiter.") + } + fun defaultLinks(config: DokkaSourceSetImpl): Set<ExternalDocumentationLinkImpl> { val links = mutableSetOf<ExternalDocumentationLinkImpl>() if (!config.noJdkLink) |