aboutsummaryrefslogtreecommitdiff
path: root/reactive/kotlinx-coroutines-reactor/build.gradle.kts
blob: d5fd208a271bb36628b83f41addbfc905994d6b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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/"
)