diff options
author | Andrzej Ratajczak <andrzej.ratajczak98@gmail.com> | 2020-07-08 10:33:26 +0200 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-07-08 11:48:29 +0200 |
commit | 6d1e25756c3e8c43ce4d5721e7665f439a19e47c (patch) | |
tree | 4a0043bebf061479ccaeaa19129229894eb9598b /plugins/base/build.gradle.kts | |
parent | a97ae720815e462c2e941d84c6273d8ecc138e6b (diff) | |
download | dokka-6d1e25756c3e8c43ce4d5721e7665f439a19e47c.tar.gz dokka-6d1e25756c3e8c43ce4d5721e7665f439a19e47c.tar.bz2 dokka-6d1e25756c3e8c43ce4d5721e7665f439a19e47c.zip |
Move common base test utils to submodule
Diffstat (limited to 'plugins/base/build.gradle.kts')
-rw-r--r-- | plugins/base/build.gradle.kts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/base/build.gradle.kts b/plugins/base/build.gradle.kts index 08d1054a..1cedf354 100644 --- a/plugins/base/build.gradle.kts +++ b/plugins/base/build.gradle.kts @@ -4,8 +4,6 @@ plugins { id("com.jfrog.bintray") } -val testUtils by configurations.creating - dependencies { val coroutines_version: String by project implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version") @@ -14,8 +12,7 @@ dependencies { implementation("org.jsoup:jsoup:1.12.1") implementation("org.jetbrains.kotlinx:kotlinx-html-jvm:0.6.10") testImplementation(project(":test-tools")) - - testUtils(sourceSets.test.get().output) + testImplementation(project(":plugins:base:test-utils")) } task("copy_frontend", Copy::class) { |