From 9559158bfeeb274e9ccf1b4563f1b23b42afc493 Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Wed, 5 Jul 2023 10:04:55 +0200 Subject: Decompose Kotlin/Java analysis (#3034) * Extract analysis into separate modules --- integration-tests/cli/build.gradle.kts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'integration-tests') 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 { -- cgit