blob: 45ddccf3462d1985953e3f5d2eeb631b5658b718 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
|
import org.jetbrains.configureBintrayPublication
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"))
}
val sourceJar by tasks.registering(Jar::class) {
archiveClassifier.set("sources")
from(sourceSets["main"].allSource)
}
tasks {
processResources {
val dokka_version: String by project
eachFile {
if (name == "dokka-version.properties") {
filter { line ->
line.replace("<dokka-version>", dokka_version)
}
}
}
}
}
publishing {
publications {
register<MavenPublication>("dokkaCore") {
artifactId = "dokka-core"
from(components["java"])
artifact(sourceJar.get())
}
}
}
configureBintrayPublication("dokkaCore")
|