2023-01-08 02:14:00 +00:00
|
|
|
plugins {
|
2023-02-15 15:32:07 +00:00
|
|
|
id "thunderbird.library.jvm"
|
2023-01-08 02:14:00 +00:00
|
|
|
alias(libs.plugins.android.lint)
|
|
|
|
}
|
2018-05-24 01:46:36 +00:00
|
|
|
|
|
|
|
if (rootProject.testCoverage) {
|
|
|
|
apply plugin: 'jacoco'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api project(":mail:common")
|
|
|
|
|
2023-01-08 02:14:00 +00:00
|
|
|
implementation libs.commons.io
|
|
|
|
implementation libs.okio
|
2018-05-24 01:46:36 +00:00
|
|
|
|
|
|
|
testImplementation project(":mail:testing")
|
2023-01-08 02:14:00 +00:00
|
|
|
testImplementation libs.okio
|
|
|
|
testImplementation libs.jzlib
|
2018-05-24 01:46:36 +00:00
|
|
|
}
|