25 lines
623 B
Text
25 lines
623 B
Text
|
|
plugins {
|
||
|
|
id(ThunderbirdPlugins.Library.jvm)
|
||
|
|
alias(libs.plugins.android.lint)
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
api(projects.backend.api)
|
||
|
|
implementation(projects.core.common)
|
||
|
|
api(projects.core.outcome)
|
||
|
|
|
||
|
|
api(projects.feature.mail.account.api)
|
||
|
|
|
||
|
|
api(projects.mail.protocols.imap)
|
||
|
|
api(projects.mail.protocols.smtp)
|
||
|
|
|
||
|
|
implementation(projects.feature.mail.folder.api)
|
||
|
|
|
||
|
|
implementation(libs.kotlinx.coroutines.core)
|
||
|
|
|
||
|
|
testImplementation(projects.core.logging.testing)
|
||
|
|
testImplementation(projects.mail.testing)
|
||
|
|
testImplementation(projects.backend.testing)
|
||
|
|
testImplementation(libs.mime4j.dom)
|
||
|
|
}
|