2022-02-24 22:55:56 +01:00
|
|
|
plugins { id 'java-test-fixtures' }
|
|
|
|
applyMatrixServiceModule(project)
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(":core")
|
|
|
|
|
|
|
|
kotlinTest(it)
|
|
|
|
kotlinFixtures(it)
|
|
|
|
testImplementation(testFixtures(project(":matrix:common")))
|
|
|
|
testImplementation(testFixtures(project(":matrix:matrix-http")))
|
|
|
|
testImplementation(testFixtures(project(":core")))
|
2022-03-06 13:46:18 +01:00
|
|
|
testFixturesImplementation(testFixtures(project(":core")))
|
2022-02-24 22:55:56 +01:00
|
|
|
testFixturesImplementation(testFixtures(project(":matrix:common")))
|
|
|
|
}
|