22 lines
398 B
Plaintext
22 lines
398 B
Plaintext
plugins {
|
|
id("space.kscience.gradle.jvm")
|
|
`maven-publish`
|
|
}
|
|
|
|
val xodusVersion: String by rootProject.extra
|
|
|
|
kscience{
|
|
useCoroutines()
|
|
}
|
|
|
|
dependencies {
|
|
api(projects.magix.magixApi)
|
|
implementation("org.jetbrains.xodus:xodus-entity-store:$xodusVersion")
|
|
|
|
testImplementation(spclibs.kotlinx.coroutines.test)
|
|
}
|
|
|
|
readme{
|
|
maturity = space.kscience.gradle.Maturity.PROTOTYPE
|
|
}
|