dataforge-core/dataforge-context/build.gradle.kts

26 lines
452 B
Plaintext
Raw Normal View History

2019-01-27 17:12:46 +03:00
plugins {
id("space.kscience.gradle.mpp")
2019-01-27 17:12:46 +03:00
}
description = "Context and provider definitions"
2020-08-31 11:27:44 +03:00
kscience {
2023-02-18 19:49:41 +03:00
jvm()
js()
2022-10-03 20:36:28 +03:00
native()
wasm()
2020-08-29 11:45:31 +03:00
useCoroutines()
2023-03-20 17:53:40 +03:00
useSerialization()
commonMain {
2023-02-18 19:49:41 +03:00
api(project(":dataforge-meta"))
api(spclibs.atomicfu)
2023-02-18 19:49:41 +03:00
}
jvmMain{
2023-02-18 19:49:41 +03:00
api(kotlin("reflect"))
api("org.slf4j:slf4j-api:1.7.30")
2019-01-27 17:12:46 +03:00
}
2021-02-07 12:46:15 +03:00
}
2021-11-02 10:50:38 +03:00
readme {
maturity = space.kscience.gradle.Maturity.DEVELOPMENT
2019-01-27 17:12:46 +03:00
}