-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
36 lines (33 loc) · 1012 Bytes
/
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
plugins {
id("kommons-multiplatform-library-conventions")
}
description = "Kommons Core is a Kotlin Multiplatform Library that offers shared features for most Kommons modules."
kotlin {
@Suppress("UNUSED_VARIABLE")
sourceSets {
val commonMain by getting
val commonTest by getting {
dependencies {
implementation(project(":kommons-test"))
}
}
val jvmMain by getting {
dependencies {
api(kotlin("reflect")) { because("sealedSubclasses and objectInstance") }
implementation(libs.slf4j.api)
}
}
val jvmTest by getting {
dependencies {
implementation(libs.slf4j.simple)
implementation(project(":kommons-exec"))
}
}
val jsMain by getting
val jsTest by getting {
dependencies {
implementation(project(":kommons-debug"))
}
}
}
}