diff options
Diffstat (limited to 'integration-tests/gradle/projects/it-multimodule-0/moduleA/moduleB/build.gradle.kts')
-rw-r--r-- | integration-tests/gradle/projects/it-multimodule-0/moduleA/moduleB/build.gradle.kts | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/integration-tests/gradle/projects/it-multimodule-0/moduleA/moduleB/build.gradle.kts b/integration-tests/gradle/projects/it-multimodule-0/moduleA/moduleB/build.gradle.kts deleted file mode 100644 index 91ccea29..00000000 --- a/integration-tests/gradle/projects/it-multimodule-0/moduleA/moduleB/build.gradle.kts +++ /dev/null @@ -1,17 +0,0 @@ -/* - * 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") - } -} |