smalltalk-matrix/chat-engine/build.gradle
Adam Brown 128c2db432 starting engine migration
- add a chat-engine abstraction
- create a matrix-chat-engine implementation
- starts by porting the initial creation and directory listing
2022-10-09 16:52:33 +01:00

12 lines
294 B
Groovy

plugins {
id 'kotlin'
}
dependencies {
api Dependencies.mavenCentral.kotlinCoroutinesCore
api project(":matrix:common")
implementation project(":matrix:services:sync")
implementation project(":matrix:services:message")
implementation project(":matrix:services:room")
}