forked from kscience/visionforge
33 lines
624 B
Plaintext
33 lines
624 B
Plaintext
plugins {
|
|
id("space.kscience.gradle.mpp")
|
|
}
|
|
|
|
kscience{
|
|
useSerialization{
|
|
json()
|
|
}
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(project(":visionforge-core"))
|
|
}
|
|
}
|
|
commonTest{
|
|
dependencies{
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.4")
|
|
}
|
|
}
|
|
jvmTest{
|
|
dependencies{
|
|
implementation("ch.qos.logback:logback-classic:1.2.11")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
readme{
|
|
maturity = space.kscience.gradle.Maturity.DEVELOPMENT
|
|
} |