35 lines
626 B
Plaintext
35 lines
626 B
Plaintext
plugins {
|
|
id("ru.mipt.npm.gradle.mpp")
|
|
id("ru.mipt.npm.gradle.native")
|
|
}
|
|
|
|
description = "Context and provider definitions"
|
|
|
|
kscience {
|
|
useCoroutines()
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
val commonMain by getting{
|
|
dependencies {
|
|
api(project(":dataforge-meta"))
|
|
}
|
|
}
|
|
jvmMain {
|
|
dependencies {
|
|
api(kotlin("reflect"))
|
|
api("org.slf4j:slf4j-api:1.7.30")
|
|
}
|
|
}
|
|
jsMain {
|
|
dependencies {
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
readme{
|
|
maturity = ru.mipt.npm.gradle.Maturity.DEVELOPMENT
|
|
} |