From 820ba8b496cfe466df201aae2f9a3d02a4589d09 Mon Sep 17 00:00:00 2001 From: Paweł Marks Date: Fri, 14 Feb 2020 14:46:24 +0100 Subject: Removes shadow dependency that was causing jar overwrites --- integration-tests/gradle-integration-tests/build.gradle.kts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'integration-tests/gradle-integration-tests') diff --git a/integration-tests/gradle-integration-tests/build.gradle.kts b/integration-tests/gradle-integration-tests/build.gradle.kts index 0a1cb9e1..7fc945b5 100644 --- a/integration-tests/gradle-integration-tests/build.gradle.kts +++ b/integration-tests/gradle-integration-tests/build.gradle.kts @@ -14,7 +14,8 @@ dependencies { testImplementation(gradleTestKit()) dokkaPlugin(project(path = ":runners:gradle-plugin")) - dokkaCore(project(path = ":core", configuration = "shadow")) + dokkaCore(project(path = ":coreDependencies", configuration = "shadow")) + dokkaCore(project(path = ":core")) kotlinGradle("org.jetbrains.kotlin:kotlin-gradle-plugin") } -- cgit