controls-kt/magix/magix-storage/magix-storage-xodus/build.gradle.kts

22 lines
398 B
Plaintext
Raw Normal View History

plugins {
2022-08-02 09:46:31 +03:00
id("space.kscience.gradle.jvm")
`maven-publish`
}
2023-02-18 20:05:26 +03:00
val xodusVersion: String by rootProject.extra
kscience{
useCoroutines()
}
dependencies {
api(projects.magix.magixApi)
implementation("org.jetbrains.xodus:xodus-entity-store:$xodusVersion")
2023-04-15 20:00:47 +03:00
testImplementation(spclibs.kotlinx.coroutines.test)
}
readme{
2022-08-02 09:46:31 +03:00
maturity = space.kscience.gradle.Maturity.PROTOTYPE
}