23 lines
637 B
Groovy
23 lines
637 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_7
|
|
targetCompatibility = JavaVersion.VERSION_1_7
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1'
|
|
|
|
implementation rootProject.libraries.dagger
|
|
|
|
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.5.10'
|
|
testImplementation 'junit:junit:4.+'
|
|
testImplementation 'androidx.arch.core:core-testing:2.1.0'
|
|
testImplementation 'org.mockito.kotlin:mockito-kotlin:3.2.0'
|
|
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.3'
|
|
|
|
|
|
} |