-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle.kts
174 lines (160 loc) · 4.37 KB
/
build.gradle.kts
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
import org.jetbrains.dokka.gradle.DokkaTask
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin
import org.jetbrains.kotlin.gradle.targets.js.npm.tasks.KotlinNpmInstallTask
import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
plugins {
`maven-publish`
signing
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
kotlin("multiplatform") version "1.9.20"
id("org.jetbrains.dokka") version "1.9.10"
}
group = "com.willowtreeapps.opentest4k"
version = "1.3.0"
kotlin {
@Suppress("OPT_IN_USAGE")
applyDefaultHierarchyTemplate {
common {
group("other") {
withNative()
withJs()
group("wasm") {
withWasm()
}
}
}
}
jvm()
js {
binaries.library()
browser()
nodejs()
}
@Suppress("OPT_IN_USAGE")
wasmJs {
binaries.library()
browser()
nodejs()
}
@Suppress("OPT_IN_USAGE")
wasmWasi {
nodejs()
}
mingwX64()
androidNativeArm32()
androidNativeArm64()
androidNativeX86()
androidNativeX64()
linuxX64()
linuxArm64()
macosX64()
macosArm64()
iosX64()
iosArm64()
iosSimulatorArm64()
tvosX64()
tvosArm64()
tvosSimulatorArm64()
watchosX64()
watchosArm32()
watchosArm64()
watchosSimulatorArm64()
watchosDeviceArm64()
sourceSets {
commonTest {
dependencies {
implementation(kotlin("test"))
}
}
val jvmMain by getting {
dependencies {
api("org.opentest4j:opentest4j:1.3.0")
}
}
val jvmTest by getting {
dependencies {
implementation(kotlin("reflect"))
}
}
}
}
nexusPublishing {
repositories {
sonatype()
}
}
// group js and native docs into buckets
tasks.withType<DokkaTask>().configureEach {
dokkaSourceSets {
configureEach {
displayName.set(platform.get().name)
}
}
}
val dokkaCommon by tasks.registering(DokkaTask::class) {
outputDirectory.set(file("$buildDir/javadoc/common"))
dokkaSourceSets {
val commonMain by getting
}
}
val dokkaJavadocCommonJar by tasks.registering(Jar::class) {
archiveClassifier.set("javadoc")
from(dokkaCommon)
}
publishing {
publications.all {
if (this is MavenPublication) {
artifact(dokkaJavadocCommonJar)
pom {
val siteUrl = "https://github.com/willowtreeapps/opentest4k"
val gitUrl = "https://github.com/willowtreeapps/opentest4k.git"
name.set(project.name)
description.set("multiplatform implementation/bindings of opentest4j")
url.set(siteUrl)
scm {
url.set(siteUrl)
connection.set(gitUrl)
developerConnection.set(gitUrl)
}
licenses {
license {
name.set("The Apache Software License, Version 2.0")
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
distribution.set("repo")
}
}
developers {
developer {
id.set("evant")
name.set("Eva Tatarka")
}
}
}
}
}
}
signing {
setRequired {
findProperty("signing.keyId") != null
}
publishing.publications.all { sign(this) }
}
plugins.withType<NodeJsRootPlugin> {
extensions.getByType<NodeJsRootExtension>().apply {
nodeDownloadBaseUrl = "https://nodejs.org/download/v8-canary"
nodeVersion = "21.0.0-v8-canary202309143a48826a08"
}
}
tasks.withType<KotlinNpmInstallTask>().configureEach {
args.add("--ignore-engines")
}
tasks.withType<KotlinCompilationTask<*>>().configureEach {
compilerOptions {
freeCompilerArgs.add("-Xexpect-actual-classes")
}
}
// TODO: remove after https://youtrack.jetbrains.com/issue/KT-46466 is fixed
project.tasks.withType(AbstractPublishToMaven::class.java).configureEach {
dependsOn(project.tasks.withType(Sign::class.java))
}