aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle/projects/it-basic-groovy/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'integration-tests/gradle/projects/it-basic-groovy/build.gradle')
-rw-r--r--integration-tests/gradle/projects/it-basic-groovy/build.gradle37
1 files changed, 37 insertions, 0 deletions
diff --git a/integration-tests/gradle/projects/it-basic-groovy/build.gradle b/integration-tests/gradle/projects/it-basic-groovy/build.gradle
new file mode 100644
index 00000000..1ffa75bc
--- /dev/null
+++ b/integration-tests/gradle/projects/it-basic-groovy/build.gradle
@@ -0,0 +1,37 @@
+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 = "$buildDir/dokka/customHtml"
+
+ failOnWarning = false
+ dokkaSourceSets {
+ customSourceSet {
+ sourceRoot { path = "$projectDir/src/main/java" }
+ sourceRoot { path = "$projectDir/src/main/kotlin" }
+ displayName = "custom"
+ reportUndocumented = true
+ }
+ }
+}
+
+dokkaJavadoc {
+ outputDirectory = "$buildDir/dokka/customJavadoc"
+}
+
+dokkaGfm {
+ outputDirectory = "$buildDir/dokka/customGfm"
+}
+
+dokkaJekyll {
+ outputDirectory = "$buildDir/dokka/customJekyll"
+}
+