blob: 448d9e6d9939e1e5e741d9fdc911d92e359ac272 (
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.12.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"
}
|