a0477c1ed2
* Update to Kotlin 1.4.0-rc and Coroutines 1.3.8-1.4.0-rc, fix type inference issues. * Kotlin 1.4.0. * Coroutines 1.3.9.
38 lines
No EOL
905 B
Groovy
38 lines
No EOL
905 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
id 'org.jetbrains.dokka'
|
|
}
|
|
|
|
dependencies {
|
|
implementation libraries.coroutinesCore
|
|
implementation libraries.coroutinesRx3
|
|
implementation libraries.coroutinesReactive
|
|
implementation project(path: ':store')
|
|
implementation libraries.rx3
|
|
|
|
testImplementation libraries.junit
|
|
testImplementation libraries.truth
|
|
testImplementation libraries.mockito
|
|
testImplementation libraries.coroutinesTest
|
|
|
|
}
|
|
group = GROUP
|
|
version = VERSION_NAME
|
|
apply from: rootProject.file("gradle/maven-push.gradle")
|
|
apply from: rootProject.file("gradle/jacoco.gradle")
|
|
targetCompatibility = 1.8
|
|
sourceCompatibility = 1.8
|
|
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
freeCompilerArgs += [
|
|
'-Xopt-in=kotlin.RequiresOptIn',
|
|
]
|
|
}
|
|
} |