jcechace
10/14/2018, 8:58 AMbuild.gradle.kts
and hint me how to make the project work with latest 1.3.rc and ktor 1.0.0.alpha-3?import org.jetbrains.kotlin.gradle.dsl.Coroutines
plugins {
application
kotlin("jvm") version "1.3.0-rc-131"
}
kotlin {
experimental.coroutines = Coroutines.ENABLE
}
repositories {
mavenCentral()
jcenter()
}
val ktor_version = "1.0.0-alpha-3"
val kotlinx_coroutines_version = "0.30.2-eap13"
dependencies {
compile(kotlin("stdlib"))
compile("org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinx_coroutines_version")
compile("io.ktor:ktor-client-core:$ktor_version")
compile("io.ktor:ktor-client-cio:$ktor_version")
compile("io.fabric8:kubernetes-client:3.1.10")
compile("io.fabric8:kubernetes-model:2.0.8")
compile("io.fabric8:openshift-client:3.1.10")
compile("io.apiman:apiman-gateway-engine-beans:1.5.1.Final")
testRuntime("junit:junit:4.12")
}
Plugin [id: 'org.jetbrains.kotlin.jvm', version: '1.3.0-rc-131'] was not found in any of the following sources:
Andreas Sinz
10/14/2018, 9:28 AMjcechace
10/14/2018, 9:31 AMNikky
10/14/2018, 11:15 AMsettings.gradle.kts
with a pluginManagement block where you tell gradle which maven repositires to search and and which artifact to use for the missing plugin id