2023-01-08 02:14:00 +00:00
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
|
|
|
id 'kotlin'
|
|
|
|
alias(libs.plugins.ksp)
|
|
|
|
alias(libs.plugins.android.lint)
|
|
|
|
}
|
2019-12-02 16:08:39 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api project(":backend:api")
|
|
|
|
|
2023-01-08 02:14:00 +00:00
|
|
|
api libs.okhttp
|
|
|
|
implementation libs.jmap.client
|
|
|
|
implementation libs.moshi
|
|
|
|
ksp libs.moshi.kotlin.kotgen
|
2019-12-02 16:08:39 +00:00
|
|
|
|
|
|
|
testImplementation project(":mail:testing")
|
2022-01-04 19:06:50 +00:00
|
|
|
testImplementation project(':backend:testing')
|
2023-01-08 02:14:00 +00:00
|
|
|
testImplementation libs.mockito.core
|
|
|
|
testImplementation libs.okhttp.mockwebserver
|
2019-12-02 16:08:39 +00:00
|
|
|
}
|