aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/cli/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'integration-tests/cli/build.gradle.kts')
-rw-r--r--integration-tests/cli/build.gradle.kts8
1 files changed, 7 insertions, 1 deletions
diff --git a/integration-tests/cli/build.gradle.kts b/integration-tests/cli/build.gradle.kts
index 4e498df1..e20529a4 100644
--- a/integration-tests/cli/build.gradle.kts
+++ b/integration-tests/cli/build.gradle.kts
@@ -23,13 +23,19 @@ val basePluginShadow: Configuration by configurations.creating {
dependencies {
basePluginShadow(projects.plugins.base)
- basePluginShadow(projects.kotlinAnalysis) // compileOnly in base plugin
+
+ // TODO [beresnev] analysis switcher
+ basePluginShadow(project(path = ":subprojects:analysis-kotlin-descriptors", configuration = "shadow"))
}
val basePluginShadowJar by tasks.register("basePluginShadowJar", ShadowJar::class) {
configurations = listOf(basePluginShadow)
archiveFileName.set("fat-base-plugin-$dokka_version.jar")
archiveClassifier.set("")
+
+ // service files are merged to make sure all Dokka plugins
+ // from the dependencies are loaded, and not just a single one.
+ mergeServiceFiles()
}
tasks.integrationTest {