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)
|
|
|
|
}
|
2022-05-02 17:41:43 +00:00
|
|
|
|
2023-02-23 10:13:01 +00:00
|
|
|
val testCoverageEnabled: Boolean by extra
|
|
|
|
if (testCoverageEnabled) {
|
|
|
|
apply(plugin = "jacoco")
|
2022-05-02 17:41:43 +00:00
|
|
|
}
|
|
|
|
|
2018-05-23 21:00:55 +00:00
|
|
|
dependencies {
|
2023-02-23 10:13:01 +00:00
|
|
|
api(projects.mail.common)
|
2018-05-23 21:00:55 +00:00
|
|
|
|
2023-02-23 10:13:01 +00:00
|
|
|
api(libs.okio)
|
|
|
|
api(libs.junit)
|
2023-05-14 01:25:03 +00:00
|
|
|
api(libs.assertk)
|
2018-05-23 21:00:55 +00:00
|
|
|
}
|