35 lines
647 B
Plaintext
35 lines
647 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"))
|
|
implementation("ch.qos.logback:logback-classic:1.2.3")
|
|
}
|
|
}
|
|
jsMain {
|
|
dependencies {
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
readme{
|
|
maturity = ru.mipt.npm.gradle.Maturity.DEVELOPMENT
|
|
} |