blob: 5051707b8ea6ecbc9af8cc599a1cb7b1ad98ee40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import org.jetbrains.registerDokkaArtifactPublication
plugins {
`maven-publish`
id("com.jfrog.bintray")
}
dependencies {
api("org.jetbrains:markdown:0.1.45")
implementation(kotlin("reflect"))
implementation("org.jsoup:jsoup:1.12.1")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.11.1")
testImplementation(project(":testApi"))
testImplementation(kotlin("test-junit"))
}
tasks {
processResources {
val dokka_version: String by project
eachFile {
if (name == "dokka-version.properties") {
filter { line ->
line.replace("<dokka-version>", dokka_version)
}
}
}
}
}
registerDokkaArtifactPublication("dokkaCore") {
artifactId = "dokka-core"
}
|