aboutsummaryrefslogtreecommitdiff
path: root/reactive/kotlinx-coroutines-reactor/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'reactive/kotlinx-coroutines-reactor/build.gradle.kts')
-rw-r--r--reactive/kotlinx-coroutines-reactor/build.gradle.kts25
1 files changed, 25 insertions, 0 deletions
diff --git a/reactive/kotlinx-coroutines-reactor/build.gradle.kts b/reactive/kotlinx-coroutines-reactor/build.gradle.kts
new file mode 100644
index 00000000..d5fd208a
--- /dev/null
+++ b/reactive/kotlinx-coroutines-reactor/build.gradle.kts
@@ -0,0 +1,25 @@
+/*
+ * Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
+ */
+
+val reactorVersion = version("reactor")
+
+dependencies {
+ compile("io.projectreactor:reactor-core:$reactorVersion")
+ compile(project(":kotlinx-coroutines-reactive"))
+}
+
+
+tasks {
+ compileKotlin {
+ kotlinOptions.jvmTarget = "1.8"
+ }
+
+ compileTestKotlin {
+ kotlinOptions.jvmTarget = "1.8"
+ }
+}
+
+externalDocumentationLink(
+ url = "https://projectreactor.io/docs/core/$reactorVersion/api/"
+)