-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle.kts
101 lines (82 loc) · 1.97 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
plugins {
java
`java-library`
`maven-publish`
signing
kotlin("multiplatform") version "1.9.10"
}
repositories {
mavenLocal()
mavenCentral()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
}
}
group = "io.kotest.extensions"
version = Ci.version
kotlin {
targets {
jvm {
compilations.all {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}
}
}
js(IR) {
browser()
nodejs()
}
// linuxArm64() // Can be added once Koin enables target
linuxX64()
mingwX64()
iosArm64()
iosSimulatorArm64()
iosX64()
macosArm64()
macosX64()
tvosArm64()
tvosSimulatorArm64()
tvosX64()
watchosArm64()
watchosSimulatorArm64()
watchosX64()
}
sourceSets {
val commonMain by getting {
dependencies {
implementation(libs.kotest.framework.api)
implementation(libs.koin.core)
implementation(libs.koin.test.get().let { "${it.module}:${it.versionConstraint.requiredVersion}" }) {
exclude(group = "junit", module = "junit")
}
}
}
val jvmMain by getting {
dependsOn(commonMain)
}
val jvmTest by getting {
dependsOn(jvmMain)
dependencies {
implementation(libs.kotest.runner.junit5)
implementation(libs.mockk)
}
}
}
}
tasks.named<Test>("jvmTest") {
useJUnitPlatform()
filter {
isFailOnNoMatchingTests = false
}
testLogging {
showExceptions = true
showStandardStreams = true
events = setOf(
org.gradle.api.tasks.testing.logging.TestLogEvent.FAILED,
org.gradle.api.tasks.testing.logging.TestLogEvent.PASSED
)
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
}
}
apply("./publish-mpp.gradle.kts")