1 /* 2 * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 5 val reactorVersion = version("reactor") 6 <lambda>null7dependencies { 8 compile("io.projectreactor:reactor-core:$reactorVersion") 9 compile(project(":kotlinx-coroutines-reactive")) 10 } 11 12 <lambda>null13tasks { 14 compileKotlin { 15 kotlinOptions.jvmTarget = "1.8" 16 } 17 18 compileTestKotlin { 19 kotlinOptions.jvmTarget = "1.8" 20 } 21 } 22 23 externalDocumentationLink( 24 url = "https://projectreactor.io/docs/core/$reactorVersion/api/" 25 ) 26