blob: 50e838a8cd28d76d91ffa4e79e7b7d186d6ce27a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import org.jetbrains.registerDokkaArtifactPublication
dependencies {
val jsoup_version: String by project
testImplementation("org.jsoup:jsoup:$jsoup_version")
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"
}
|