blob: 0853a34d62dbd0a98a2280e4c874b12bf06535c2 [file] [log] [blame]
/*
* Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
dependencies {
implementation(project(":kotlinx-coroutines-reactive"))
}
java {
sourceCompatibility = JavaVersion.VERSION_1_9
targetCompatibility = JavaVersion.VERSION_1_9
}
tasks {
compileKotlin {
kotlinOptions.jvmTarget = "9"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "9"
}
}
externalDocumentationLink(
url = "https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.html"
)