13 lines
354 B
Groovy
13 lines
354 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
id 'org.jetbrains.kotlin.plugin.serialization'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':core:inference')
|
|
implementation project(':core:events')
|
|
testImplementation "org.junit.jupiter:junit-jupiter"
|
|
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test"
|
|
}
|