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