I'm having trouble getting my Kotlin Gradle DSL pr...
# gradle
z
I'm having trouble getting my Kotlin Gradle DSL project to build with 1.3. I've added the eap repo, and I'm trying to use the RC version string for Kotlin, but I get
Plugin [id: 'org.jetbrains.kotlin.jvm', version: '1.3.0-rc-131'] was not found in any of the following sources:
d
I think you need to add the kotlin-eap repository to
pluginManagement
in settings.gradle.kts
something like:```import org.gradle.kotlin.dsl.support.kotlinEap pluginManagement { repositories { kotlinEap() gradlePluginPortal() } }```
also, you probably want
1.3.0-rc-146
which is latest RC