0
0
mirror of https://github.com/thunderbird/thunderbird-android.git synced 2024-09-20 12:12:15 +02:00
thunderbird-android/backend/jmap/build.gradle

21 lines
476 B
Groovy

plugins {
id 'java-library'
id 'kotlin'
alias(libs.plugins.ksp)
alias(libs.plugins.android.lint)
}
dependencies {
api project(":backend:api")
api libs.okhttp
implementation libs.jmap.client
implementation libs.moshi
ksp libs.moshi.kotlin.codegen
testImplementation project(":mail:testing")
testImplementation project(':backend:testing')
testImplementation libs.mockito.core
testImplementation libs.okhttp.mockwebserver
}