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>null9java { 10 sourceCompatibility = JavaVersion.VERSION_1_9 11 targetCompatibility = JavaVersion.VERSION_1_9 12 } 13 <lambda>null14tasks { 15 compileKotlin { 16 kotlinOptions.jvmTarget = "9" 17 } 18 19 compileTestKotlin { 20 kotlinOptions.jvmTarget = "9" 21 } 22 } 23 24 externalDocumentationLink( 25 url = "https://docs.oracle.com/javase/9/docs/api/java/util/concurrent/Flow.html" 26 ) 27