mirror of
https://github.com/ouchadam/small-talk.git
synced 2025-03-07 21:28:04 +01:00
Bumps [coroutines-extensions](https://github.com/square/sqldelight) from 1.5.3 to 1.5.4. - [Release notes](https://github.com/square/sqldelight/releases) - [Changelog](https://github.com/cashapp/sqldelight/blob/master/CHANGELOG.md) - [Commits](https://github.com/square/sqldelight/compare/1.5.3...1.5.4) --- updated-dependencies: - dependency-name: com.squareup.sqldelight:coroutines-extensions dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
820 B
Groovy
28 lines
820 B
Groovy
plugins {
|
|
id 'kotlin'
|
|
id 'com.squareup.sqldelight'
|
|
id 'org.jetbrains.kotlin.plugin.serialization'
|
|
id 'java-test-fixtures'
|
|
}
|
|
|
|
sqldelight {
|
|
DapkDb {
|
|
packageName = "app.dapk.db"
|
|
}
|
|
linkSqlite = true
|
|
}
|
|
|
|
dependencies {
|
|
api project(":matrix:common")
|
|
implementation project(":matrix:services:sync")
|
|
implementation project(":matrix:services:message")
|
|
implementation project(":matrix:services:profile")
|
|
implementation project(":matrix:services:device")
|
|
implementation project(":matrix:services:room")
|
|
implementation project(":core")
|
|
implementation Dependencies.mavenCentral.kotlinSerializationJson
|
|
implementation Dependencies.mavenCentral.kotlinCoroutinesCore
|
|
implementation "com.squareup.sqldelight:coroutines-extensions:1.5.4"
|
|
|
|
kotlinFixtures(it)
|
|
} |