blob: 4cbce45aa43a2837a51d225f5e050c6aeb4c65af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import org.jetbrains.registerDokkaArtifactPublication
dependencies {
implementation(project(":plugins:base"))
testImplementation(project(":plugins:base"))
testImplementation(project(":plugins:base:base-test-utils"))
testImplementation(project(":core:content-matcher-test-utils"))
testImplementation("org.jsoup:jsoup:1.13.1")
}
registerDokkaArtifactPublication("kotlinAsJavaPlugin") {
artifactId = "kotlin-as-java-plugin"
}
|