Where are the dev build for Kotlin `1.4.30` publis...
# eap
r
Where are the dev build for Kotlin
1.4.30
published? I see them here already: https://github.com/JetBrains/kotlin/releases But I can’t find them here: http://dl.bintray.com/kotlin/kotlin-dev/org/jetbrains/kotlin/jvm/org.jetbrains.kotlin.jvm.gradle.plugin/
đź‘€ 2
a
We have stopped to regularly publish dev builds to bintray for various reasons. Currently the latest build can be found at https://oss.sonatype.org/content/repositories/snapshots/org/jetbrains/kotlin/jvm/org.jetbrains.kotlin.jvm.gradle.plugin/1.4.255-SNAPSHOT. So, add a repository
maven { url "<https://oss.sonatype.org/content/repositories/snapshots>" }
, and get the version 1.4.255-SNAPSHOT.
r
That’s what I was looking for! Thanks