blob: fadf42875465811611b5f5a51845332fca119de6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
plugins {
id 'org.jetbrains.kotlin.jvm'
id("org.jetbrains.dokka")
}
apply from: '../template.root.gradle.kts'
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
}
dokkaHtml {
outputDirectory = new File(buildDir, "/dokka/customHtml")
pluginsConfiguration.put("pluginA", "configA")
failOnWarning = false
dokkaSourceSets {
customSourceSet {
sourceRoot(file("src/main/java"))
sourceRoot(file("src/main/kotlin"))
displayName = "custom"
reportUndocumented = true
}
}
}
dokkaJavadoc {
outputDirectory = new File(buildDir, "dokka/customJavadoc")
}
dokkaGfm {
outputDirectory = new File(buildDir, "dokka/customGfm")
}
dokkaJekyll {
outputDirectory = new File(buildDir, "dokka/customJekyll")
}
|