2023-01-08 02:14:00 +00:00
|
|
|
plugins {
|
2023-02-23 10:13:01 +00:00
|
|
|
id(ThunderbirdPlugins.Library.jvm)
|
2023-01-08 02:14:00 +00:00
|
|
|
alias(libs.plugins.android.lint)
|
|
|
|
}
|
2018-05-24 01:46:36 +00:00
|
|
|
|
2023-02-23 10:13:01 +00:00
|
|
|
val testCoverageEnabled: Boolean by extra
|
|
|
|
if (testCoverageEnabled) {
|
|
|
|
apply(plugin = "jacoco")
|
2018-05-24 01:46:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-02-23 10:13:01 +00:00
|
|
|
api(projects.mail.common)
|
2018-05-24 01:46:36 +00:00
|
|
|
|
2023-02-23 10:13:01 +00:00
|
|
|
implementation(libs.commons.io)
|
|
|
|
implementation(libs.okio)
|
2018-05-24 01:46:36 +00:00
|
|
|
|
2023-02-23 10:13:01 +00:00
|
|
|
testImplementation(projects.mail.testing)
|
|
|
|
testImplementation(libs.okio)
|
|
|
|
testImplementation(libs.jzlib)
|
2018-05-24 01:46:36 +00:00
|
|
|
}
|