2022-09-17 12:53:04 +00:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'com.android.lint'
|
2018-06-02 13:46:16 +00:00
|
|
|
|
2022-09-17 12:53:04 +00:00
|
|
|
java {
|
|
|
|
sourceCompatibility = javaVersion
|
|
|
|
targetCompatibility = javaVersion
|
2018-06-02 13:46:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api project(":backend:api")
|
2018-07-15 17:40:28 +00:00
|
|
|
api project(":mail:protocols:imap")
|
|
|
|
api project(":mail:protocols:smtp")
|
2018-06-02 13:46:16 +00:00
|
|
|
|
2021-06-23 12:43:34 +00:00
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:${versions.kotlinCoroutines}"
|
2018-06-02 13:46:16 +00:00
|
|
|
|
|
|
|
testImplementation project(":mail:testing")
|
2022-01-05 00:01:27 +00:00
|
|
|
testImplementation project(":backend:testing")
|
2018-06-02 13:46:16 +00:00
|
|
|
testImplementation "junit:junit:${versions.junit}"
|
2022-02-03 00:10:52 +00:00
|
|
|
testImplementation "org.mockito:mockito-inline:${versions.mockito}"
|
2022-01-05 00:01:27 +00:00
|
|
|
testImplementation "org.mockito.kotlin:mockito-kotlin:${versions.mockitoKotlin}"
|
2021-06-16 12:53:50 +00:00
|
|
|
testImplementation "com.google.truth:truth:${versions.truth}"
|
2022-01-05 00:01:27 +00:00
|
|
|
testImplementation "org.apache.james:apache-mime4j-dom:${versions.mime4j}"
|
2018-06-02 13:46:16 +00:00
|
|
|
}
|