blob: 5abd85750d1aac7de04c55886178785fe6f00576 (
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.
*/
package org.jetbrains.conventions
import org.gradle.kotlin.dsl.invoke
import org.jetbrains.isLocalPublication
plugins {
id("org.jetbrains.dokka")
}
tasks.dokkaHtml {
onlyIf { !isLocalPublication }
outputDirectory.set(layout.buildDirectory.dir("dokka"))
}
|