Repo created
This commit is contained in:
parent
75dc487a7a
commit
39c29d175b
6317 changed files with 388324 additions and 2 deletions
29
mail/common/build.gradle.kts
Normal file
29
mail/common/build.gradle.kts
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
plugins {
|
||||
id(ThunderbirdPlugins.Library.jvm)
|
||||
alias(libs.plugins.android.lint)
|
||||
}
|
||||
|
||||
val testCoverageEnabled: Boolean by extra
|
||||
if (testCoverageEnabled) {
|
||||
apply(plugin = "jacoco")
|
||||
}
|
||||
|
||||
dependencies {
|
||||
api(libs.jetbrains.annotations)
|
||||
|
||||
api(projects.core.logging.implLegacy)
|
||||
implementation(projects.core.common)
|
||||
|
||||
implementation(libs.mime4j.core)
|
||||
implementation(libs.mime4j.dom)
|
||||
implementation(libs.okio)
|
||||
implementation(libs.commons.io)
|
||||
implementation(libs.moshi)
|
||||
|
||||
// We're only using this for its DefaultHostnameVerifier
|
||||
implementation(libs.apache.httpclient5)
|
||||
|
||||
testImplementation(projects.core.logging.testing)
|
||||
testImplementation(projects.mail.testing)
|
||||
testImplementation(libs.icu4j.charset)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue