2019-03-26 04:41:03 +08:00
|
|
|
description = "Spring Core Coroutines support"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
|
|
|
|
compile("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
|
|
|
|
compile("io.projectreactor:reactor-core")
|
|
|
|
compile("org.jetbrains.kotlinx:kotlinx-coroutines-core:${coroutinesVersion}")
|
|
|
|
compile("org.jetbrains.kotlinx:kotlinx-coroutines-reactor:${coroutinesVersion}")
|
|
|
|
}
|
2019-04-08 23:05:08 +08:00
|
|
|
|
2019-04-08 23:28:44 +08:00
|
|
|
eclipse {
|
|
|
|
project {
|
|
|
|
buildCommand "org.jetbrains.kotlin.ui.kotlinBuilder"
|
|
|
|
buildCommand "org.eclipse.jdt.core.javabuilder"
|
|
|
|
natures "org.jetbrains.kotlin.core.kotlinNature"
|
|
|
|
natures "org.eclipse.jdt.core.javanature"
|
|
|
|
linkedResource name: "kotlin_bin", type: "2", locationUri: "org.jetbrains.kotlin.core.filesystem:/" + project.name + "/kotlin_bin"
|
|
|
|
}
|
|
|
|
classpath {
|
|
|
|
containers "org.jetbrains.kotlin.core.KOTLIN_CONTAINER"
|
|
|
|
}
|
2019-04-08 23:05:08 +08:00
|
|
|
}
|
2019-04-10 05:48:06 +08:00
|
|
|
|
|
|
|
configurations.archives.artifacts.clear()
|