2022-10-09 17:52:33 +02:00
|
|
|
plugins {
|
|
|
|
id 'kotlin'
|
2022-10-12 20:57:16 +02:00
|
|
|
id 'java-test-fixtures'
|
2022-10-09 17:52:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api Dependencies.mavenCentral.kotlinCoroutinesCore
|
|
|
|
api project(":matrix:common")
|
2022-10-12 20:57:16 +02:00
|
|
|
|
|
|
|
kotlinFixtures(it)
|
|
|
|
testFixturesImplementation(testFixtures(project(":matrix:common")))
|
2022-10-12 21:03:44 +02:00
|
|
|
testFixturesImplementation(testFixtures(project(":core")))
|
2022-10-09 17:52:33 +02:00
|
|
|
}
|