hey folks, am I missing something or was kotlin-gr...
# android
j
hey folks, am I missing something or was kotlin-gradle-plugin 1.3.50 removed from maven repos? 🤔 I’m currently bumping on build errors with:
Copy code
A problem occurred configuring root project 'android'.
> Could not resolve all artifacts for configuration ':classpath'.
   > Could not find org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.50.
     Searched in the following locations:
       - <https://dl.google.com/dl/android/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.50/kotlin-gradle-plugin-1.3.50.pom>
       - <https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.50/kotlin-gradle-plugin-1.3.50.pom>
Anyone else experiencing this?
v
It is still there and working. It is on Maven Central. JCenter usually forwards to MC for thing it does not have itself. But JCenter often (for my feeling) has quirks or outages. I guess you hit such an outage. Your JCenter link from the error message now works fine. Due to that I usually not depend on JCenter forwarding to MC for things that are on MC but have MC separately as repo and first in the list so that it has precedence.
j
Thanks Björn, I guess that was the case, was just finding it odd that many builds did failed for a quite big time window
v
Yeah, that happens when you depend on JCenter 😄