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

import org.jetbrains.dokka.gradle.DokkaTask

plugins {
    kotlin("jvm")
    id("org.jetbrains.dokka")
}

tasks.withType<DokkaTask>().configureEach {
    moduleName.set("!Module B!")
    dokkaSourceSets.configureEach {
        includes.from("Module.md")
    }
}