aboutsummaryrefslogtreecommitdiff
path: root/dokka-integration-tests/gradle/projects/it-multimodule-0/moduleA/build.gradle.kts
blob: a28f73e8cfdffa1bd8cefd813801e68334e66a89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

plugins {
    // TODO: File bug report for gradle: :moduleA:moduleB:dokkaHtml is missing kotlin gradle plugin from
    //  the runtime classpath during execution without this plugin in the parent project
    kotlin("jvm")
    id("org.jetbrains.dokka")
}


allprojects {
    tasks.withType<org.jetbrains.dokka.gradle.AbstractDokkaTask> {
        pluginsMapConfiguration.set(
            mapOf(
                "org.jetbrains.dokka.base.DokkaBase" to """{ "homepageLink" : "https://github.com/Kotlin/dokka/tree/master/dokka-integration-tests/gradle/projects/it-multimodule-0/" }"""
            )
        )
    }
}