blob: b52d3729f9d49b47f73738dbc5a5e8b90e1c9537 (
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
34
|
import org.jetbrains.registerDokkaArtifactPublication
plugins {
`maven-publish`
id("com.jfrog.bintray")
}
dependencies {
api(project("dependencies", configuration = "shadow"))
implementation(kotlin("reflect"))
implementation("com.google.code.gson:gson:2.8.5")
implementation("org.jsoup:jsoup:1.12.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"
}
|