17 lines
299 B
Text
17 lines
299 B
Text
plugins {
|
|
id(ThunderbirdPlugins.Library.jvm)
|
|
alias(libs.plugins.android.lint)
|
|
}
|
|
|
|
val testCoverageEnabled: Boolean by extra
|
|
if (testCoverageEnabled) {
|
|
apply(plugin = "jacoco")
|
|
}
|
|
|
|
dependencies {
|
|
api(projects.mail.common)
|
|
|
|
api(libs.okio)
|
|
api(libs.junit)
|
|
api(libs.assertk)
|
|
}
|