diff options
author | Aurimas Liutikas <aurimas@google.com> | 2020-07-13 19:41:03 -0700 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-07-15 13:26:16 +0200 |
commit | 0c848be52c90cc1136d9ccbcd55b9a290bc7b58b (patch) | |
tree | 598559b9187963e00e13d763078e289805e406f7 /plugins/mathjax/build.gradle.kts | |
parent | 543155602b233639753fd5973a23b730e021d431 (diff) | |
download | dokka-0c848be52c90cc1136d9ccbcd55b9a290bc7b58b.tar.gz dokka-0c848be52c90cc1136d9ccbcd55b9a290bc7b58b.tar.bz2 dokka-0c848be52c90cc1136d9ccbcd55b9a290bc7b58b.zip |
Add a basic mathjax test
Diffstat (limited to 'plugins/mathjax/build.gradle.kts')
-rw-r--r-- | plugins/mathjax/build.gradle.kts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/mathjax/build.gradle.kts b/plugins/mathjax/build.gradle.kts index 142e7dc4..e570de46 100644 --- a/plugins/mathjax/build.gradle.kts +++ b/plugins/mathjax/build.gradle.kts @@ -1,5 +1,14 @@ import org.jetbrains.registerDokkaArtifactPublication +dependencies { + testImplementation("org.jsoup:jsoup:1.12.1") + testImplementation(project(":plugins:base")) + testImplementation(project(":plugins:base:test-utils")) + testImplementation(project(":test-tools")) + testImplementation(kotlin("test-junit")) + testImplementation(project(":kotlin-analysis")) +} + registerDokkaArtifactPublication("mathjaxPlugin") { artifactId = "mathjax-plugin" } |