smalltalk-matrix/test-harness/build.gradle
dependabot[bot] d49c9cba46
Bump turbine from 0.11.0 to 0.12.0
Bumps [turbine](https://github.com/cashapp/turbine) from 0.11.0 to 0.12.0.
- [Release notes](https://github.com/cashapp/turbine/releases)
- [Changelog](https://github.com/cashapp/turbine/blob/trunk/CHANGELOG.md)
- [Commits](https://github.com/cashapp/turbine/compare/0.11.0...0.12.0)

---
updated-dependencies:
- dependency-name: app.cash.turbine:turbine
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-10-12 05:32:23 +00:00

36 lines
1.1 KiB
Groovy

plugins {
id 'kotlin'
id 'org.jetbrains.kotlin.plugin.serialization'
}
test {
useJUnitPlatform()
}
dependencies {
kotlinTest(it)
testImplementation 'app.cash.turbine:turbine:0.12.0'
testImplementation Dependencies.mavenCentral.kotlinSerializationJson
testImplementation project(":core")
testImplementation project(":domains:store")
testImplementation project(":domains:olm")
testImplementation project(":matrix:matrix")
testImplementation project(":matrix:matrix-http-ktor")
testImplementation project(":matrix:services:auth")
testImplementation project(":matrix:services:sync")
testImplementation project(":matrix:services:room")
testImplementation project(":matrix:services:push")
testImplementation project(":matrix:services:message")
testImplementation project(":matrix:services:device")
testImplementation project(":matrix:services:crypto")
testImplementation rootProject.files("external/jolm.jar")
testImplementation 'org.json:json:20220924'
testImplementation Dependencies.mavenCentral.ktorJava
testImplementation Dependencies.mavenCentral.sqldelightInMemory
}