2019-01-27 17:12:46 +03:00
|
|
|
plugins {
|
2022-08-01 18:12:57 +03:00
|
|
|
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()
|
2020-08-29 11:45:31 +03:00
|
|
|
useCoroutines()
|
2023-02-18 19:49:41 +03:00
|
|
|
dependencies {
|
|
|
|
api(project(":dataforge-meta"))
|
|
|
|
}
|
|
|
|
dependencies(jvmMain){
|
|
|
|
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 {
|
2022-08-01 18:12:57 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.DEVELOPMENT
|
2019-01-27 17:12:46 +03:00
|
|
|
}
|