64 lines
2.2 KiB
Groovy
64 lines
2.2 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
|
|
|
apply from: "${rootProject.projectDir}/gradle/plugins/checkstyle-android.gradle"
|
|
apply from: "${rootProject.projectDir}/gradle/plugins/findbugs-android.gradle"
|
|
|
|
if (rootProject.testCoverage) {
|
|
apply plugin: 'jacoco'
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}"
|
|
|
|
implementation "org.apache.james:apache-mime4j-core:0.8.1"
|
|
implementation "org.apache.james:apache-mime4j-dom:0.8.1"
|
|
implementation "com.squareup.okio:okio:${versions.okio}"
|
|
implementation "commons-io:commons-io:${versions.commonsIo}"
|
|
implementation "com.android.support:support-annotations:${versions.supportLibrary}"
|
|
implementation "com.jakewharton.timber:timber:${versions.timber}"
|
|
|
|
androidTestImplementation "com.android.support.test:runner:0.4.1"
|
|
androidTestImplementation "com.madgag.spongycastle:pg:1.51.0.0"
|
|
|
|
testImplementation project(":mail:testing")
|
|
testImplementation "org.robolectric:robolectric:${versions.robolectric}"
|
|
testImplementation "junit:junit:${versions.junit}"
|
|
testImplementation "com.google.truth:truth:${versions.truth}"
|
|
testImplementation "org.mockito:mockito-core:${versions.mockito}"
|
|
testImplementation "com.jcraft:jzlib:1.0.7"
|
|
|
|
// The Android Gradle plugin doesn't seem to put the Apache HTTP Client on the runtime classpath anymore when
|
|
// running JVM tests.
|
|
testImplementation "org.apache.httpcomponents:httpclient:4.5.5"
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion buildConfig.compileSdk
|
|
buildToolsVersion buildConfig.buildTools
|
|
|
|
defaultConfig {
|
|
minSdkVersion buildConfig.minSdk
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
// for using Apache HTTP Client
|
|
useLibrary 'org.apache.http.legacy'
|
|
|
|
buildTypes {
|
|
debug {
|
|
testCoverageEnabled rootProject.testCoverage
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
lintConfig file("$rootProject.projectDir/config/lint/lint.xml")
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
}
|