aboutsummaryrefslogtreecommitdiff
path: root/plugins/mathjax/build.gradle.kts
blob: 0b69a03827784187b4cfcdaa973cc38121b68a0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import org.jetbrains.registerDokkaArtifactPublication

dependencies {
    implementation(project(":plugins:base"))

    val jsoup_version: String by project
    testImplementation("org.jsoup:jsoup:$jsoup_version")
    testImplementation(project(":plugins:base:base-test-utils"))
    testImplementation(project(":core:content-matcher-test-utils"))
    testImplementation(kotlin("test-junit"))
    testImplementation(project(":kotlin-analysis"))
}

registerDokkaArtifactPublication("mathjaxPlugin") {
    artifactId = "mathjax-plugin"
}