-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle.kts
105 lines (90 loc) · 1.93 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
buildscript {
repositories {
mavenCentral()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
mavenContent { snapshotsOnly() }
}
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
}
plugins {
java
`java-library`
signing
`maven-publish`
kotlin("multiplatform") version libs.versions.kotlin
}
repositories {
mavenCentral()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
mavenContent { snapshotsOnly() }
}
mavenLocal()
}
group = "io.kotest.extensions"
version = Ci.version
kotlin {
jvm {
compilations.all {
kotlinOptions {
jvmTarget = "1.8"
}
}
}
js(IR) {
browser()
nodejs()
}
linuxX64()
mingwX64()
watchosX64()
watchosArm32()
watchosArm64()
macosArm64()
macosX64()
tvosX64()
tvosArm64()
tvosSimulatorArm64()
iosX64()
iosArm64()
iosSimulatorArm64()
sourceSets {
commonMain {
dependencies {
implementation(libs.kotest.assertionsShared)
implementation(libs.ktorClient.core)
}
}
jvmMain {
dependencies {
implementation(libs.ktorServer.core)
implementation(libs.ktorServer.testHost)
}
}
jvmTest {
dependencies {
implementation(libs.kotest.runnerJunit5)
}
}
}
}
tasks.named<Test>("jvmTest").configure {
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")