mirror of
https://github.com/ouchadam/small-talk.git
synced 2025-01-11 09:34:03 +01:00
2b5775aa7f
Bumps [json](https://github.com/douglascrockford/JSON-java) from 20220320 to 20220924. - [Release notes](https://github.com/douglascrockford/JSON-java/releases) - [Changelog](https://github.com/stleary/JSON-java/blob/master/docs/RELEASES.md) - [Commits](https://github.com/douglascrockford/JSON-java/commits) --- updated-dependencies: - dependency-name: org.json:json dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
36 lines
1.1 KiB
Groovy
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.10.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
|
|
}
|