18 lines
558 B
Groovy
18 lines
558 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
id 'org.jetbrains.kotlin.plugin.serialization'
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core:events"))
|
|
implementation(project(":core:kernel"))
|
|
implementation(project(":core:sessions"))
|
|
implementation(project(":core:inference"))
|
|
implementation project(':testing:fixtures')
|
|
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test"
|
|
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test"
|
|
testImplementation project(':infrastructure:persistence')
|
|
}
|