1 /*
2  * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3  */
4 
<lambda>null5 dependencies {
6     compile(project(":kotlinx-coroutines-reactive"))
7     compile("org.reactivestreams:reactive-streams-flow-adapters:${version("reactive_streams")}")
8 }
9 
<lambda>null10 tasks {
11     compileKotlin {
12         kotlinOptions.jvmTarget = "9"
13     }
14 
15     compileTestKotlin {
16         kotlinOptions.jvmTarget = "9"
17     }
18 }
19 
20 externalDocumentationLink(
21     url = "https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.html"
22 )
23