aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/maven/build.gradle.kts
diff options
context:
space:
mode:
authoraSemy <897017+aSemy@users.noreply.github.com>2023-03-07 23:26:06 +0100
committerGitHub <noreply@github.com>2023-03-07 23:26:06 +0100
commit62c980707d23d2d451c75330f7ed1ba613777cf3 (patch)
tree2dd732bdaa23713d665a07bcc28c2ab152dc8096 /integration-tests/maven/build.gradle.kts
parentded804e5772399f1495016d598573cb20b673b58 (diff)
downloaddokka-62c980707d23d2d451c75330f7ed1ba613777cf3.tar.gz
dokka-62c980707d23d2d451c75330f7ed1ba613777cf3.tar.bz2
dokka-62c980707d23d2d451c75330f7ed1ba613777cf3.zip
Use buildSrc convention plugins to configure the Dokka subprojects (#2704)
Diffstat (limited to 'integration-tests/maven/build.gradle.kts')
-rw-r--r--integration-tests/maven/build.gradle.kts5
1 files changed, 5 insertions, 0 deletions
diff --git a/integration-tests/maven/build.gradle.kts b/integration-tests/maven/build.gradle.kts
index 1c747bbc..0a2cb7c4 100644
--- a/integration-tests/maven/build.gradle.kts
+++ b/integration-tests/maven/build.gradle.kts
@@ -1,9 +1,14 @@
import org.jetbrains.SetupMaven
import org.jetbrains.dependsOnMavenLocalPublication
+plugins {
+ org.jetbrains.conventions.`dokka-integration-test`
+}
+
evaluationDependsOn(":runners:maven-plugin")
dependencies {
+ implementation(project(":integration-tests"))
implementation(kotlin("stdlib"))
implementation(kotlin("test-junit"))
}