-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
308 lines (270 loc) · 8.83 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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
@file:Suppress("UNUSED_VARIABLE")
import com.codingfeline.buildkonfig.compiler.FieldSpec.Type.STRING
import com.vanniktech.maven.publish.SonatypeHost
/**
* Dependency Hierarchy
* ```
* common
* |-- js
* '-- notWeb
* |-- jvm
* '-- native
* |-- iOS
* | -- iOSX64
* | -- iOSArm64
* |-- Desktop
* |--linuxX64
* |--macOS64
* |--mingw64 (windows)
* ```
*/
plugins {
val kotlinVersion = "1.9.10"
kotlin("multiplatform") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion
id("com.codingfeline.buildkonfig") version "0.13.3"
id("com.vanniktech.maven.publish") version "0.25.3"
jacoco
}
repositories {
mavenCentral()
}
kotlin {
js(IR) {
compilations.all {
kotlinOptions {
moduleKind = "umd"
sourceMap = true
metaInfo = true
}
}
nodejs {
testTask {
useMocha {
timeout = "30s"
}
}
}
}
jvm {
compilations.all {
kotlinOptions.jvmTarget = JavaVersion.VERSION_11.toString()
}
val test by compilations.getting {
jacoco {
toolVersion = "0.8.7"
}
tasks.register<JacocoReport>("jacocoTestReport") {
val coverageSourceDirs = arrayOf(
"src/commonMain/kotlin",
"src/jvmMain/kotlin"
)
val classFiles = File("${buildDir}/classes/kotlin/jvm/")
.walkBottomUp()
.toSet()
classDirectories.setFrom(classFiles)
sourceDirectories.setFrom(files(coverageSourceDirs))
executionData.setFrom(files("${buildDir}/jacoco/jvmTest.exec"))
reports {
xml.required.set(true)
html.required.set(true)
}
}
tasks.register<JacocoCoverageVerification>("jacocoTestCoverageVerification") {
val coverageSourceDirs = arrayOf(
"src/commonMain/kotlin",
"src/jvmMain/kotlin"
)
val classFiles = File("${buildDir}/classes/kotlin/jvm/")
.walkBottomUp()
.toSet()
classDirectories.setFrom(classFiles)
sourceDirectories.setFrom(files(coverageSourceDirs))
executionData.setFrom(files("${buildDir}/jacoco/jvmTest.exec"))
violationRules {
rule {
limit {
minimum = "0.6".toBigDecimal()
}
}
}
}
}
testRuns["test"].executionTask.configure {
useJUnit()
}
}
listOf(
iosX64(),
iosArm64(),
linuxX64(),
macosX64(),
macosArm64()
).forEach {
it.apply {
binaries {
sharedLib {
baseName = "core"
}
}
}
}
sourceSets {
all {
languageSettings.optIn("kotlinx.coroutines.ExperimentalCoroutinesApi")
languageSettings.optIn("kotlinx.coroutines.FlowPreview")
// This is required for Turbine
languageSettings.optIn("kotlin.time.ExperimentalTime")
}
val commonMain by getting {
dependencies {
api(libs.coroutine.core)
implementation(libs.kotlin.time)
implementation(libs.ktor.auth)
implementation(libs.ktor.content.negotation)
implementation(libs.ktor.core)
implementation(libs.ktor.serialization)
implementation(libs.markdown)
implementation(libs.okio.multiplatform)
implementation(libs.serialization.json)
implementation(libs.serialization.yml)
}
}
val commonTest by getting {
dependencies {
implementation(kotlin("reflect"))
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
implementation(libs.coroutine.test)
implementation(libs.ktor.client.mock)
implementation(libs.turbine)
implementation(libs.okio.fake.filesystem)
}
}
val nativeMain by creating { dependsOn(commonMain) }
val nativeTest by creating { dependsOn(commonTest) }
val jsMain by getting {
dependsOn(commonMain)
dependencies {
implementation(libs.ktor.js)
implementation(libs.okio.node)
}
}
val jsTest by getting {
dependsOn(commonTest)
dependencies {
implementation(kotlin("test-js"))
}
}
val jvmMain by getting {
dependsOn(commonMain)
dependencies {
implementation(libs.ktor.jvm)
}
}
val jvmTest by getting {
dependencies {
dependsOn(commonTest)
implementation(kotlin("test-junit"))
implementation(libs.mockk.jvm)
}
}
val iosMain by creating {
dependsOn(nativeMain)
dependencies {
implementation(libs.ktor.ios)
}
}
val iosTest by creating { dependsOn(nativeTest) }
val iosArm64Main by getting { dependsOn(iosMain) }
val iosArm64Test by getting { dependsOn(iosTest) }
val iosX64Main by getting { dependsOn(iosMain) }
val iosX64Test by getting { dependsOn(iosTest) }
val desktopMain by creating {
dependsOn(nativeMain)
}
val desktopTest by creating { dependsOn(nativeTest) }
val linuxX64Main by getting {
dependsOn(desktopMain)
dependencies {
implementation(libs.ktor.curl)
}
}
val linuxX64Test by getting { dependsOn(desktopTest) }
val macosMain by creating {
dependsOn(desktopMain)
dependencies {
implementation(libs.ktor.darwin)
}
}
val macosTest by creating { dependsOn(desktopTest) }
val macosArm64Main by getting { dependsOn(macosMain) }
val macosArm64Test by getting { dependsOn(macosTest) }
val macosX64Main by getting { dependsOn(macosMain) }
val macosX64Test by getting { dependsOn(macosTest) }
}
}
// Publishing
group = "io.github.ncipollo.tix"
version = System.getenv("TIX_VERSION") ?: "1.0.0-SNAPSHOT"
buildkonfig {
packageName = "org.tix.config"
exposeObjectWithName = "TixCoreConfig"
defaultConfigs {
buildConfigField(STRING, "version", version.toString())
}
}
tasks.withType<Test> {
testLogging.showStandardStreams = true
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinTest> {
testLogging.showStandardStreams = true
}
// This task will run the native tests for the operating system you are running.
tasks.register("hostOSNativeTest") {
val hostOs = System.getProperty("os.name")
val testTaskName = when {
hostOs == "Mac OS X" -> "macosX64Test"
hostOs == "Linux" -> "linuxX64Test"
else -> throw GradleException("Host OS is not supported in Kotlin/Native.")
}
println("Running native tests: $testTaskName")
dependsOn(tasks.findByName(testTaskName))
}
tasks.register("printCoverageLocation") {
val htmlIndexPath = "${buildDir}/reports/jacoco/jacocoTestReport/html/index.html"
println("Coverage HTML Location: $htmlIndexPath")
}
tasks.register("jvmTestCoverage") {
dependsOn("jvmTest")
finalizedBy("jacocoTestReport")
finalizedBy("jacocoTestCoverageVerification")
finalizedBy("printCoverageLocation")
}
mavenPublishing {
publishToMavenCentral(SonatypeHost.S01, true)
signAllPublications()
coordinates(group.toString(), name, version.toString())
// Provide artifacts information requited by Maven Central
pom {
name.set("Tix Core Library")
description.set("Kotlin MPP library for authoring, tracking and managing tickets.")
url.set("https://github.com/ncipollo/tix-core")
licenses {
license {
name.set("MIT")
url.set("https://opensource.org/licenses/MIT")
}
}
developers {
developer {
id.set("ncipollo")
name.set("Nick Cipollo")
email.set("[email protected]>")
}
}
scm {
url.set("https://github.com/ncipollo/tix-core.git")
}
}
}