aboutsummaryrefslogtreecommitdiff
path: root/integration-tests
diff options
context:
space:
mode:
authorsebastian.sellmair <sebastian.sellmair@jetbrains.com>2020-07-09 17:14:00 +0200
committerSebastian Sellmair <34319766+sellmair@users.noreply.github.com>2020-07-13 14:23:08 +0200
commit3e13d29c01b70ae94fe0dcb6aec33afd7c3aec98 (patch)
tree8662d137aec7da5ac2d9b4d8af6afb16235c9928 /integration-tests
parent2c967fb5389b0f7891b59d8a9334e4efca546b46 (diff)
downloaddokka-3e13d29c01b70ae94fe0dcb6aec33afd7c3aec98.tar.gz
dokka-3e13d29c01b70ae94fe0dcb6aec33afd7c3aec98.tar.bz2
dokka-3e13d29c01b70ae94fe0dcb6aec33afd7c3aec98.zip
Rename DokkaDependencies.kt to DokkaArtifacts.kt
Diffstat (limited to 'integration-tests')
-rw-r--r--integration-tests/gradle/projects/it-basic/build.gradle.kts7
1 files changed, 5 insertions, 2 deletions
diff --git a/integration-tests/gradle/projects/it-basic/build.gradle.kts b/integration-tests/gradle/projects/it-basic/build.gradle.kts
index 58f97b6c..fe21e6d6 100644
--- a/integration-tests/gradle/projects/it-basic/build.gradle.kts
+++ b/integration-tests/gradle/projects/it-basic/build.gradle.kts
@@ -7,10 +7,13 @@ plugins {
apply(from = "../template.root.gradle.kts")
-val customDokkaTask by tasks.register<DokkaTask>("customDokka")
-
dependencies {
+ dokkaPlugin("my:plugin:version")
+ dokkaJavadocPlugin("my:plugin-extending-javadoc:version")
implementation(kotlin("stdlib"))
}
+tasks.dokkaGfm {
+ outputDirectory = File(buildDir, "gfm").absolutePath
+}