13 lines
321 B
Groovy
13 lines
321 B
Groovy
plugins {
|
|
id 'kotlin'
|
|
id 'java-test-fixtures'
|
|
}
|
|
|
|
dependencies {
|
|
api Dependencies.mavenCentral.kotlinCoroutinesCore
|
|
api project(":matrix:common")
|
|
|
|
kotlinFixtures(it)
|
|
testFixturesImplementation(testFixtures(project(":matrix:common")))
|
|
testFixturesImplementation(testFixtures(project(":core")))
|
|
} |