blob: efd29e1bf6d0d289881f7214cb45c2d746dc4244 (
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
48
|
buildscript {
extra.set("production", (findProperty("prod") ?: findProperty("production") ?: "false") == "true")
}
plugins {
kotlin("js")
id("maven-publish")
}
repositories()
kotlin {
kotlinJsTargets()
}
dependencies {
implementation(kotlin("stdlib-js"))
api(rootProject)
testImplementation(kotlin("test-js"))
}
val sourcesJar by tasks.registering(Jar::class) {
archiveClassifier.set("sources")
from(kotlin.sourceSets.test.get().kotlin)
}
val testJar by tasks.registering(Jar::class) {
dependsOn("testClasses")
archiveClassifier.set("tests")
from(tasks["compileTestKotlinJs"].outputs)
}
publishing {
publications {
create<MavenPublication>("kotlin") {
from(components["kotlin"])
artifact(tasks["sourcesJar"])
artifact(tasks["testJar"]) {
classifier = "tests"
}
pom {
defaultPom()
}
}
}
}
setupPublication()
|