xref: /aosp_15_r20/external/kotlinx.coroutines/reactive/kotlinx-coroutines-jdk9/build.gradle.kts (revision 7a7160fed73afa6648ef8aa100d4a336fe921d9a)
1 import org.jetbrains.kotlin.gradle.dsl.*
2 
<lambda>null3 dependencies {
4     implementation(project(":kotlinx-coroutines-reactive"))
5 }
6 
<lambda>null7 java {
8     sourceCompatibility = JavaVersion.VERSION_1_9
9     targetCompatibility = JavaVersion.VERSION_1_9
10 }
11 
<lambda>null12 tasks {
13     compileKotlin {
14         compilerOptions.jvmTarget = JvmTarget.JVM_9
15     }
16 
17     compileTestKotlin {
18         compilerOptions.jvmTarget = JvmTarget.JVM_9
19     }
20 }
21 
22 externalDocumentationLink(
23     url = "https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.html"
24 )
25