forked from kscience/visionforge
25 lines
437 B
Plaintext
25 lines
437 B
Plaintext
plugins {
|
|
id("space.kscience.gradle.mpp")
|
|
}
|
|
|
|
kscience {
|
|
jvm()
|
|
js()
|
|
native()
|
|
useSerialization {
|
|
json()
|
|
}
|
|
dependencies {
|
|
api(projects.visionforgeCore)
|
|
}
|
|
testDependencies {
|
|
implementation(spclibs.kotlinx.coroutines.test)
|
|
}
|
|
dependencies(jvmTest) {
|
|
implementation(spclibs.logback.classic)
|
|
}
|
|
}
|
|
|
|
readme {
|
|
maturity = space.kscience.gradle.Maturity.DEVELOPMENT
|
|
} |