mirror of
https://github.com/ouchadam/small-talk.git
synced 2024-12-20 06:27:29 +01:00
13 lines
373 B
Groovy
13 lines
373 B
Groovy
|
plugins {
|
||
|
id 'kotlin'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(":matrix:common")
|
||
|
api project(":matrix:matrix-http")
|
||
|
|
||
|
implementation Dependencies.mavenCentral.ktorCore
|
||
|
implementation Dependencies.mavenCentral.ktorSerialization
|
||
|
implementation Dependencies.mavenCentral.ktorLogging
|
||
|
implementation Dependencies.mavenCentral.kotlinSerializationJson
|
||
|
}
|