diff options
author | Szymon Świstun <sswistun@virtuslab.com> | 2020-01-21 16:19:18 +0100 |
---|---|---|
committer | Szymon Świstun <sswistun@virtuslab.com> | 2020-01-22 10:58:24 +0100 |
commit | 154c3f0d83ea5f9990a06962ba8cfc36a832e04d (patch) | |
tree | 65be9c6323abd91e824bff5c8b54f11fb4192e61 /testApi/build.gradle | |
parent | 4417ab37e0e16663bde81efd5207c0e1929b881a (diff) | |
download | dokka-154c3f0d83ea5f9990a06962ba8cfc36a832e04d.tar.gz dokka-154c3f0d83ea5f9990a06962ba8cfc36a832e04d.tar.bz2 dokka-154c3f0d83ea5f9990a06962ba8cfc36a832e04d.zip |
tests moved to :testApi module
Diffstat (limited to 'testApi/build.gradle')
-rw-r--r-- | testApi/build.gradle | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testApi/build.gradle b/testApi/build.gradle new file mode 100644 index 00000000..5425b7bc --- /dev/null +++ b/testApi/build.gradle @@ -0,0 +1,12 @@ +buildscript { + dependencies { + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} +apply plugin: 'kotlin' + +dependencies { + implementation project(':core') + implementation group: 'junit', name: 'junit', version: '4.12' + implementation group: 'org.jetbrains.kotlin', name: 'kotlin-test-junit', version: kotlin_version +}
\ No newline at end of file |