22 lines
373 B
Plaintext
22 lines
373 B
Plaintext
|
plugins {
|
||
|
id("ru.mipt.npm.gradle.jvm")
|
||
|
`maven-publish`
|
||
|
}
|
||
|
|
||
|
val xodusVersion = "2.0.1"
|
||
|
|
||
|
kscience{
|
||
|
useCoroutines()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api(projects.magix.magixApi)
|
||
|
implementation("org.jetbrains.xodus:xodus-entity-store:$xodusVersion")
|
||
|
|
||
|
testImplementation(npmlibs.kotlinx.coroutines.test)
|
||
|
}
|
||
|
|
||
|
readme{
|
||
|
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
||
|
}
|