2023-02-23 10:13:01 +00:00
|
|
|
@Suppress("DSL_SCOPE_VIOLATION")
|
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-06-02 13:46:16 +00:00
|
|
|
|
|
|
|
dependencies {
|
2023-02-23 10:13:01 +00:00
|
|
|
api(projects.backend.api)
|
|
|
|
api(projects.mail.protocols.imap)
|
|
|
|
api(projects.mail.protocols.smtp)
|
2018-06-02 13:46:16 +00:00
|
|
|
|
2023-02-23 10:13:01 +00:00
|
|
|
implementation(libs.kotlinx.coroutines.core)
|
2018-06-02 13:46:16 +00:00
|
|
|
|
2023-02-23 10:13:01 +00:00
|
|
|
testImplementation(projects.mail.testing)
|
|
|
|
testImplementation(projects.backend.testing)
|
|
|
|
testImplementation(libs.mime4j.dom)
|
2018-06-02 13:46:16 +00:00
|
|
|
}
|