diff options
author | Paweł Marks <pmarks@virtuslab.com> | 2020-02-14 14:46:24 +0100 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-02-14 15:48:09 +0100 |
commit | 820ba8b496cfe466df201aae2f9a3d02a4589d09 (patch) | |
tree | 7d7de3a68f3de4b26d72839e2241344fef2cff1e /integration-tests/gradle-integration-tests | |
parent | e730b82c4db6306a5b9e552d8a4c6578b0c1e01a (diff) | |
download | dokka-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.kts | 3 |
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") } |