aboutsummaryrefslogtreecommitdiff
path: root/plugins/kotlin-as-java/build.gradle.kts
blob: 5cfc3d2256c082cf611757daaada3ca3281d12ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"))
    val jsoup_version: String by project
    testImplementation("org.jsoup:jsoup:$jsoup_version")
}

registerDokkaArtifactPublication("kotlinAsJavaPlugin") {
    artifactId = "kotlin-as-java-plugin"
}