aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle-integration-tests
diff options
context:
space:
mode:
authorPaweł Marks <pmarks@virtuslab.com>2020-02-14 14:46:24 +0100
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-02-14 15:48:09 +0100
commit820ba8b496cfe466df201aae2f9a3d02a4589d09 (patch)
tree7d7de3a68f3de4b26d72839e2241344fef2cff1e /integration-tests/gradle-integration-tests
parente730b82c4db6306a5b9e552d8a4c6578b0c1e01a (diff)
downloaddokka-820ba8b496cfe466df201aae2f9a3d02a4589d09.tar.gz
dokka-820ba8b496cfe466df201aae2f9a3d02a4589d09.tar.bz2
dokka-820ba8b496cfe466df201aae2f9a3d02a4589d09.zip
Removes shadow dependency that was causing jar overwrites
Diffstat (limited to 'integration-tests/gradle-integration-tests')
-rw-r--r--integration-tests/gradle-integration-tests/build.gradle.kts3
1 files changed, 2 insertions, 1 deletions
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")
}