Now that bintray is gone, where are dev builds hos...
# announcements
g
Now that bintray is gone, where are dev builds hosted? (like
1.5.30-dev-1046
) ?
maven("<https://dl.bintray.com/kotlin/kotlin-eap>") or maven("<https://dl.bintray.com/kotlin/kotlin-dev>")
doesn’t seem to be working anymore
g
Thanks!
But @ephemient this isn’t working through gradle
Copy code
Searched in the following repositories:
    Gradle Central Plugin Repository
    maven(<https://cache-redirector.jetbrains.com/maven.pkg.jetbrains.space/kotlin/p/kotlin/dev>)
I added this `
Copy code
maven("<https://cache-redirector.jetbrains.com/maven.pkg.jetbrains.space/kotlin/p/kotlin/dev>")
tried this as well `
Copy code
maven("<https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev>")
e
the syntax, as always, is
Copy code
maven { url("<https://cache-redirector.jetbrains.com/maven.pkg.jetbrains.space/kotlin/p/kotlin/dev>") }
v
But giving the URL as
String
to the
maven
call should also work and save the separate
url
call, shouldn't it?
g
yes, both the syntaxes work
oh I see it in the Kotlin DSL now
g
ya its in Kotlin dsl
Copy code
fun RepositoryHandler.maven(url: Any) =
    maven { setUrl(url) }
m
My browser redirects it to
<https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev>
So added
maven("<https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev>")
to both
settings.gradle.kts
and
build.gradle.kts
Works for me.
But at the moment latest in that repo is
1.5.30-dev-1044