2022-05-02 17:41:43 +00:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply plugin: 'kotlin'
|
2022-08-09 11:55:01 +00:00
|
|
|
apply plugin: 'com.android.lint'
|
2016-05-28 12:26:56 +00:00
|
|
|
|
|
|
|
if (rootProject.testCoverage) {
|
|
|
|
apply plugin: 'jacoco'
|
|
|
|
}
|
2014-12-20 00:09:49 +00:00
|
|
|
|
2022-05-02 17:41:43 +00:00
|
|
|
java {
|
|
|
|
sourceCompatibility = javaVersion
|
|
|
|
targetCompatibility = javaVersion
|
|
|
|
}
|
|
|
|
|
2014-12-20 00:09:49 +00:00
|
|
|
dependencies {
|
2022-05-01 23:53:00 +00:00
|
|
|
api "org.jetbrains:annotations:${versions.jetbrainsAnnotations}"
|
|
|
|
|
2018-07-08 01:27:52 +00:00
|
|
|
implementation "org.apache.james:apache-mime4j-core:${versions.mime4j}"
|
|
|
|
implementation "org.apache.james:apache-mime4j-dom:${versions.mime4j}"
|
2018-05-23 17:36:52 +00:00
|
|
|
implementation "com.squareup.okio:okio:${versions.okio}"
|
|
|
|
implementation "commons-io:commons-io:${versions.commonsIo}"
|
2022-04-28 21:23:44 +00:00
|
|
|
implementation "com.squareup.moshi:moshi:${versions.moshi}"
|
2015-05-20 21:48:30 +00:00
|
|
|
|
2022-05-02 17:23:38 +00:00
|
|
|
// We're only using this for its DefaultHostnameVerifier
|
|
|
|
implementation "org.apache.httpcomponents.client5:httpclient5:5.1.3"
|
|
|
|
|
2018-05-23 21:00:55 +00:00
|
|
|
testImplementation project(":mail:testing")
|
2018-05-23 17:36:52 +00:00
|
|
|
testImplementation "junit:junit:${versions.junit}"
|
|
|
|
testImplementation "com.google.truth:truth:${versions.truth}"
|
2022-02-03 00:10:52 +00:00
|
|
|
testImplementation "org.mockito:mockito-inline:${versions.mockito}"
|
2021-04-21 23:57:38 +00:00
|
|
|
testImplementation "org.mockito.kotlin:mockito-kotlin:${versions.mockitoKotlin}"
|
2021-11-03 12:56:35 +00:00
|
|
|
testImplementation "com.ibm.icu:icu4j-charset:70.1"
|
2014-12-20 00:09:49 +00:00
|
|
|
}
|