21 lines
464 B
Groovy
21 lines
464 B
Groovy
plugins {
|
|
id 'java-library'
|
|
alias(libs.plugins.android.lint)
|
|
}
|
|
|
|
if (rootProject.testCoverage) {
|
|
apply plugin: 'jacoco'
|
|
}
|
|
|
|
dependencies {
|
|
api project(":mail:common")
|
|
|
|
implementation libs.commons.io
|
|
compileOnly libs.apache.httpclient
|
|
|
|
testImplementation project(":mail:testing")
|
|
testImplementation libs.junit
|
|
testImplementation libs.truth
|
|
testImplementation libs.mockito.inline
|
|
testImplementation libs.apache.httpclient
|
|
}
|