2022-09-17 12:53:04 +00:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply plugin: 'kotlin'
|
2020-02-21 00:51:10 +00:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2022-09-17 12:53:04 +00:00
|
|
|
apply plugin: 'com.android.lint'
|
2019-12-02 16:08:39 +00:00
|
|
|
|
2022-09-17 12:53:04 +00:00
|
|
|
java {
|
|
|
|
sourceCompatibility = javaVersion
|
|
|
|
targetCompatibility = javaVersion
|
2019-12-02 16:08:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api project(":backend:api")
|
|
|
|
|
2020-01-20 14:43:28 +00:00
|
|
|
api "com.squareup.okhttp3:okhttp:${versions.okhttp}"
|
2020-02-21 00:51:10 +00:00
|
|
|
implementation "rs.ltt.jmap:jmap-client:0.3.1"
|
|
|
|
implementation "com.squareup.moshi:moshi:${versions.moshi}"
|
|
|
|
kapt "com.squareup.moshi:moshi-kotlin-codegen:${versions.moshi}"
|
2019-12-02 16:08:39 +00:00
|
|
|
|
|
|
|
testImplementation project(":mail:testing")
|
2022-01-04 19:06:50 +00:00
|
|
|
testImplementation project(':backend:testing')
|
2019-12-02 16:08:39 +00:00
|
|
|
testImplementation "org.mockito:mockito-core:${versions.mockito}"
|
2020-07-15 15:09:51 +00:00
|
|
|
testImplementation("com.squareup.okhttp3:mockwebserver:${versions.okhttp}")
|
2019-12-02 16:08:39 +00:00
|
|
|
}
|