I'm running into a problem where JCenter is not of...
# kotlinx-html
m
I'm running into a problem where JCenter is not offering the artifacts. Their Web site says that the artifacts are there, but Gradle is unable to resolve them:
Copy code
Could not find kotlinx-html-jvm.jar (org.jetbrains.kotlinx:kotlinx-html-jvm:0.6.12).
Searched in the following locations:
    <https://jcenter.bintray.com/org/jetbrains/kotlinx/kotlinx-html-jvm/0.6.12/kotlinx-html-jvm-0.6.12.jar>
Did they move somewhere?
based on https://twitter.com/hamen/status/1284115366055206913 it feels like a JCenter problem
b
Hi! Sorry for the inconvenience! Right now you can continue using 0.7.1 from JCenter. If you use an older version we recommend you update to 0.7.1 and continue using it from JCenter. If you want to stay on an older version you can use this maven repository https://dl.bintray.com/kotlin/kotlinx.html to get it, but note new versions will come only to the new repo (https://kotlin.bintray.com/kotlinx) and JCenter. Code snippet to define repo in Gradle:
Copy code
maven {
    url("<https://dl.bintray.com/kotlin/kotlinx.html>")
}
Happy to share that we’ve restored 0.6.* artifacts in JCenter. Have a nice Kotlin!
👍 1