15 lines
466 B
Groovy
15 lines
466 B
Groovy
|
plugins {
|
||
|
id 'kotlin'
|
||
|
id 'org.jetbrains.kotlin.plugin.serialization'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation Dependencies.mavenCentral.kotlinSerializationJson
|
||
|
implementation Dependencies.mavenCentral.kotlinCoroutinesCore
|
||
|
|
||
|
implementation project(":core")
|
||
|
implementation project(":domains:store")
|
||
|
implementation project(":matrix:services:crypto")
|
||
|
implementation project(":matrix:services:device")
|
||
|
compileOnly project(":domains:olm-stub")
|
||
|
}
|