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

35 lines
626 B
Plaintext
Raw Normal View History

2019-01-27 17:12:46 +03:00
plugins {
2021-02-23 17:40:28 +03:00
id("ru.mipt.npm.gradle.mpp")
id("ru.mipt.npm.gradle.native")
2019-01-27 17:12:46 +03:00
}
description = "Context and provider definitions"
2020-08-31 11:27:44 +03:00
kscience {
2020-08-29 11:45:31 +03:00
useCoroutines()
}
2019-01-27 17:12:46 +03:00
kotlin {
sourceSets {
2021-02-23 17:40:28 +03:00
val commonMain by getting{
2019-01-27 17:12:46 +03:00
dependencies {
api(project(":dataforge-meta"))
}
}
2021-02-23 17:40:28 +03:00
jvmMain {
2019-01-27 17:12:46 +03:00
dependencies {
2020-04-22 13:40:35 +03:00
api(kotlin("reflect"))
2021-03-07 09:46:01 +03:00
api("org.slf4j:slf4j-api:1.7.30")
2019-01-27 17:12:46 +03:00
}
}
2021-02-23 17:40:28 +03:00
jsMain {
2019-01-27 17:12:46 +03:00
dependencies {
2021-03-01 10:25:02 +03:00
2019-01-27 17:12:46 +03:00
}
}
}
2021-02-07 12:46:15 +03:00
}
readme{
maturity = ru.mipt.npm.gradle.Maturity.DEVELOPMENT
2019-01-27 17:12:46 +03:00
}