2021-11-15 15:35:51 +03:00
|
|
|
plugins {
|
2024-05-10 11:33:00 +03:00
|
|
|
id("space.kscience.gradle.mpp")
|
2021-11-15 15:35:51 +03:00
|
|
|
`maven-publish`
|
|
|
|
}
|
|
|
|
|
2023-08-23 16:21:11 +03:00
|
|
|
description = """
|
|
|
|
An implementation of controls-storage on top of JetBrains Xodus.
|
|
|
|
""".trimIndent()
|
|
|
|
|
2024-05-10 11:33:00 +03:00
|
|
|
kscience {
|
|
|
|
jvm()
|
|
|
|
jvmMain {
|
|
|
|
api(projects.controlsStorage)
|
|
|
|
implementation(libs.xodus.entity.store)
|
2022-06-01 10:11:12 +03:00
|
|
|
// implementation("org.jetbrains.xodus:xodus-environment:$xodusVersion")
|
|
|
|
// implementation("org.jetbrains.xodus:xodus-vfs:$xodusVersion")
|
2022-01-18 18:25:40 +03:00
|
|
|
|
2024-05-10 11:33:00 +03:00
|
|
|
}
|
|
|
|
jvmTest{
|
|
|
|
implementation(spclibs.kotlinx.coroutines.test)
|
|
|
|
}
|
2022-01-18 18:25:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
readme{
|
2022-08-02 09:46:31 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.PROTOTYPE
|
2022-01-18 18:25:40 +03:00
|
|
|
}
|