1 /* 2 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 <lambda>null5dependencies { 6 implementation(project(":kotlinx-coroutines-reactive")) 7 } 8 <lambda>null9tasks { 10 compileKotlin { 11 kotlinOptions.jvmTarget = "9" 12 } 13 14 compileTestKotlin { 15 kotlinOptions.jvmTarget = "9" 16 } 17 } 18 19 externalDocumentationLink( 20 url = "https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.html" 21 ) 22