blob: 1d92c0be2827e4635556f817ee516fc7532cfb7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import org.jetbrains.registerDokkaArtifactPublication
dependencies {
testImplementation("org.jsoup:jsoup:1.13.1")
testImplementation(project(":plugins:base"))
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"
}
|