Has anyone had any problems pulling the 0.11.0-SNA...
# arrow
m
Has anyone had any problems pulling the 0.11.0-SNAPSHOT libraries lately? We’re using gradle to build, and I don’t think we’ve made any changes around dependencies or build process recently. Been seeing errors like this, when pulling arrow-kt libraries:
Copy code
[2020-06-29T19:32:38.437Z] * What went wrong:
[2020-06-29T19:32:38.437Z] Execution failed for task ':core:kaptGenerateStubsKotlin'.
[2020-06-29T19:32:38.437Z] > Could not resolve all files for configuration ':core:compileClasspath'.
[2020-06-29T19:32:38.437Z]    > Could not resolve io.arrow-kt:arrow-mtl:0.11.0-SNAPSHOT.
[2020-06-29T19:32:38.437Z]      Required by:
[2020-06-29T19:32:38.437Z]          project :core
[2020-06-29T19:32:38.437Z]       > Could not resolve io.arrow-kt:arrow-mtl:0.11.0-SNAPSHOT.
[2020-06-29T19:32:38.437Z]          > Unable to load Maven meta-data from <https://oss.jfrog.org/artifactory/oss-snapshot-local/io/arrow-kt/arrow-mtl/0.11.0-SNAPSHOT/maven-metadata.xml>.
[2020-06-29T19:32:38.437Z]             > Could not get resource '<https://oss.jfrog.org/artifactory/oss-snapshot-local/io/arrow-kt/arrow-mtl/0.11.0-SNAPSHOT/maven-metadata.xml>'.
[2020-06-29T19:32:38.437Z]                > Could not GET '<https://www.jfrog.com/error?from=oss.jfrog.org&by=nginx-shared4c.gcoss-use1.jfrog.local>'. Received status code 403 from server: Forbidden
Oddly enough, if I visit one of those oss.jfrog.org urls directly, I’m able to download that metadata file
This may have been some transient issue. I had to retry my build a bunch of times, but eventually these libraries were downloaded successfully
👍 4