1
0
mirror of https://github.com/ouchadam/small-talk.git synced 2025-03-10 17:10:16 +01:00
2022-03-06 12:46:18 +00:00

15 lines
490 B
Groovy

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")))
testFixturesImplementation(testFixtures(project(":core")))
testFixturesImplementation(testFixtures(project(":matrix:common")))
}