aboutsummaryrefslogtreecommitdiff
path: root/integration-tests
diff options
context:
space:
mode:
authorsebastian.sellmair <sebastian.sellmair@jetbrains.com>2020-07-09 16:19:57 +0200
committerSebastian Sellmair <34319766+sellmair@users.noreply.github.com>2020-07-13 14:23:08 +0200
commit8525326620eab855c2a0af83acfd47efb431d253 (patch)
tree1668a0c459ded35f0341196dc9faffb9448bd933 /integration-tests
parentbb942786909961443eb1ff7feee90c190040ed49 (diff)
downloaddokka-8525326620eab855c2a0af83acfd47efb431d253.tar.gz
dokka-8525326620eab855c2a0af83acfd47efb431d253.tar.bz2
dokka-8525326620eab855c2a0af83acfd47efb431d253.zip
Refactor dokka tasks classpath configuration
Diffstat (limited to 'integration-tests')
-rw-r--r--integration-tests/gradle/projects/it-basic/build.gradle.kts5
1 files changed, 5 insertions, 0 deletions
diff --git a/integration-tests/gradle/projects/it-basic/build.gradle.kts b/integration-tests/gradle/projects/it-basic/build.gradle.kts
index e5a44555..58f97b6c 100644
--- a/integration-tests/gradle/projects/it-basic/build.gradle.kts
+++ b/integration-tests/gradle/projects/it-basic/build.gradle.kts
@@ -1,3 +1,5 @@
+import org.jetbrains.dokka.gradle.DokkaTask
+
plugins {
kotlin("jvm")
id("org.jetbrains.dokka")
@@ -5,7 +7,10 @@ plugins {
apply(from = "../template.root.gradle.kts")
+val customDokkaTask by tasks.register<DokkaTask>("customDokka")
+
dependencies {
implementation(kotlin("stdlib"))
}
+