11 lines
249 B
Groovy
11 lines
249 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
id 'org.jetbrains.kotlin.plugin.serialization'
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core:events"))
|
|
testImplementation(testFixtures(project(":testing:contracts")))
|
|
}
|