blob: c721746f3bd9ded0f357b372aa380229105f208c [file] [log] [blame]
/*
* Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
dependencies {
compile(project(":kotlinx-coroutines-reactive"))
compile("org.reactivestreams:reactive-streams-flow-adapters:${version("reactive_streams")}")
}
tasks {
compileKotlin {
kotlinOptions.jvmTarget = "9"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "9"
}
}
externalDocumentationLink(
url = "https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.html"
)