mirror of
https://github.com/ouchadam/small-talk.git
synced 2024-12-19 05:13:50 +01:00
17 lines
697 B
Groovy
17 lines
697 B
Groovy
plugins { id 'java-test-fixtures' }
|
|
applyMatrixServiceModule(project)
|
|
|
|
dependencies {
|
|
implementation project(":core")
|
|
implementation project(":matrix:services:device")
|
|
|
|
kotlinTest(it)
|
|
kotlinFixtures(it)
|
|
testImplementation(testFixtures(project(":matrix:common")))
|
|
testImplementation(testFixtures(project(":matrix:matrix-http")))
|
|
testImplementation(testFixtures(project(":core")))
|
|
testImplementation(testFixtures(project(":matrix:services:device")))
|
|
testFixturesImplementation(testFixtures(project(":matrix:common")))
|
|
testFixturesImplementation(testFixtures(project(":matrix:services:device")))
|
|
testFixturesImplementation(testFixtures(project(":core")))
|
|
} |