blob: ed57bd2edf3505e471862940c75cc5c7c4ad462a (
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
|
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.main.get().kotlin)
}
publishing {
publications {
create<MavenPublication>("kotlin") {
from(components["kotlin"])
artifact(tasks["sourcesJar"])
pom {
defaultPom()
}
}
}
}
setupPublication()
|