blob: c73716d4941ada395249ac286fa59b0e59d0af2d [file] [log] [blame]
/*
* Copyright 2016-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
dependencies {
compile "io.projectreactor:reactor-core:$reactor_vesion"
compile project(':kotlinx-coroutines-reactive')
}
tasks.withType(dokka.getClass()) {
externalDocumentationLink {
url = new URL("https://projectreactor.io/docs/core/$reactor_vesion/api/")
packageListUrl = projectDir.toPath().resolve("package.list").toUri().toURL()
}
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}