visionforge/visionforge-solid/build.gradle.kts

35 lines
703 B
Plaintext
Raw Normal View History

2022-08-13 12:45:10 +03:00
import space.kscience.gradle.KScienceVersions
2019-03-08 11:55:01 +03:00
plugins {
2022-08-12 22:16:06 +03:00
id("space.kscience.gradle.mpp")
2019-03-08 11:55:01 +03:00
}
2021-02-16 14:49:15 +03:00
kscience{
2022-01-07 12:29:43 +03:00
useSerialization{
json()
}
2020-10-02 19:09:25 +03:00
}
2019-12-24 22:09:39 +03:00
2019-03-08 11:55:01 +03:00
kotlin {
sourceSets {
2019-08-04 11:02:36 +03:00
commonMain {
2019-03-08 11:55:01 +03:00
dependencies {
2020-08-05 22:08:08 +03:00
api(project(":visionforge-core"))
2019-03-08 11:55:01 +03:00
}
}
2022-08-08 22:17:06 +03:00
commonTest{
dependencies{
2022-08-13 12:45:10 +03:00
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:${KScienceVersions.coroutinesVersion}")
2022-08-08 22:17:06 +03:00
}
}
2022-08-12 22:16:06 +03:00
jvmTest{
dependencies{
implementation("ch.qos.logback:logback-classic:1.2.11")
}
}
2019-03-08 11:55:01 +03:00
}
2022-01-07 12:29:43 +03:00
}
readme{
2022-08-12 22:16:06 +03:00
maturity = space.kscience.gradle.Maturity.DEVELOPMENT
2020-10-02 19:09:25 +03:00
}