-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
37 lines (33 loc) · 976 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
37
plugins {
id("kommons-multiplatform-jvm-js-library-conventions")
}
description = "Kommons Debug is a Kotlin Multiplatform Library for print debugging."
kotlin {
@Suppress("UNUSED_VARIABLE")
sourceSets {
val commonMain by getting {
dependencies {
api(project(":kommons-core"))
api(project(":kommons-text"))
}
}
val commonTest by getting {
dependencies {
implementation(project(":kommons-test"))
}
}
val jvmMain by getting {
dependencies {
api(kotlin("reflect"))
api(libs.slf4j.api)
api(project(":kommons-io"))
}
languageSettings.optIn("kotlin.reflect.jvm.ExperimentalReflectionOnLambdas")
}
val jvmTest by getting {
dependencies {
implementation(libs.slf4j.simple)
}
}
}
}