mirror of
https://github.com/ouchadam/small-talk.git
synced 2025-02-25 00:17:42 +01:00
- add a chat-engine abstraction - create a matrix-chat-engine implementation - starts by porting the initial creation and directory listing
23 lines
751 B
Groovy
23 lines
751 B
Groovy
plugins {
|
|
id 'kotlin'
|
|
}
|
|
|
|
dependencies {
|
|
api Dependencies.mavenCentral.kotlinCoroutinesCore
|
|
|
|
implementation project(":core")
|
|
implementation project(":chat-engine")
|
|
|
|
implementation project(":domains:olm")
|
|
|
|
implementation project(":matrix:matrix")
|
|
implementation project(":matrix:matrix-http-ktor")
|
|
implementation project(":matrix:services:auth")
|
|
implementation project(":matrix:services:sync")
|
|
implementation project(":matrix:services:room")
|
|
implementation project(":matrix:services:push")
|
|
implementation project(":matrix:services:message")
|
|
implementation project(":matrix:services:device")
|
|
implementation project(":matrix:services:crypto")
|
|
implementation project(":matrix:services:profile")
|
|
} |