blob: 030db5c60474b8b1a55ebb17d46d74611b8dfdb6 (
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
|
import org.jetbrains.configurePublication
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)
}
}
}
}
}
configurePublication("dokka-core")
|