You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
875 B
24 lines
875 B
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}") |
|
} |
|
|
|
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" |
|
} |
|
} |
|
|
|
configurations.archives.artifacts.clear()
|
|
|