Hi, it seems today's SNAPSHOT build didn't upload ...
# arrow
t
Hi, it seems today's SNAPSHOT build didn't upload correctly to jfrog.
Copy code
Could not find arrow-fx-0.11.0-SNAPSHOT.jar (io.arrow-kt:arrow-fx:0.11.0-SNAPSHOT:20200821.081149-114).
Searched in the following locations:
    <https://oss.jfrog.org/artifactory/oss-snapshot-local/io/arrow-kt/arrow-fx/0.11.0-SNAPSHOT/arrow-fx-0.11.0-20200821.081149-114.jar>
Looking here that seems to be correct. Last snapshot has only pom, sources and javadoc files available.
r
Thanks @than_!! Right, metadata was updated even though the artifact wasn't uploaded. It's being re-run again. I'll let you know when it finishes!
👏 1
t
You guys are the best 🙂 👍
🙌 1
r
It seems Bintray is down. I'm going to find an alternative since then in case you want to try the latest SNAPSHOT!
JitPack can be an alternative meanwhile:
Copy code
-    implementation "io.arrow-kt:arrow-fx"
+    implementation "com.github.arrow-kt:arrow-fx:master-SNAPSHOT"
Copy code
repositories {
     ...
+    maven { url '<https://jitpack.io>' }
}
It's important to keep in mind that the build takes time so maybe it's necessary to increase the HTTP timeout when using latest Gradle versions:
Copy code
systemProp.org.gradle.internal.http.connectionTimeout=180000
systemProp.org.gradle.internal.http.socketTimeout=180000
And the usual configuration to keep fresh SNAPSHOTs:
Copy code
configurations.all {
    resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
}
or
Copy code
./gradlew ... --refresh-dependencies
I'll let you know when everything is working fine again
@than_ @Jose Antonio Jimenez Bintray is working again and OOS repository was fixed with a new deployment 🙌
🍾 2