circling back, I had to explicitly add the eap rep...
# eap
d
circling back, I had to explicitly add the eap repository in order to get the rc version of the jvm plugin via:
Copy code
pluginManagement {
  repositories {
    maven("<https://dl.bintray.com/kotlin/kotlin-eap>")
    gradlePluginPortal()
  }
}
👏 2
j
Could you post your whole build.gradle.kts?
nevermind, figured out it need to be in
settings.gradle.kts
r
Copy code
pluginManagement {
  repositories {
    kotlinEap()
    gradlePluginPortal()
  }
}
There's an extensions!