This is an automated email from the ASF dual-hosted git repository.
mhenke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk.git
The following commit(s) were added to refs/heads/master by this push:
new 3e6138d minor version bump of azure-storage-blob to fix builds (#5150)
3e6138d is described below
commit 3e6138d088fbd502a69c31314ad7c0089c5f5283
Author: David Grove <[email protected]>
AuthorDate: Tue Aug 17 05:51:11 2021 -0400
minor version bump of azure-storage-blob to fix builds (#5150)
It appears the version 12.6.0 of com.azure:azure-storage-blob has
been removed from the maven central repo. Our builds have been failing
for about 3 days trying to download it. Version 12.7.0 is available,
so hack around the build problems by upgrading on minor version.
A typical failing build is:
https://app.travis-ci.com/github/apache/openwhisk-runtime-rust/jobs/531822834#L279
---
common/scala/build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/scala/build.gradle b/common/scala/build.gradle
index d38e4f4..988a236 100644
--- a/common/scala/build.gradle
+++ b/common/scala/build.gradle
@@ -97,7 +97,7 @@ dependencies {
}
compile "com.amazonaws:aws-java-sdk-cloudfront:1.11.517"
- compile ("com.azure:azure-storage-blob:12.6.0") {
+ compile ("com.azure:azure-storage-blob:12.7.0") {
exclude group: "com.azure", module: "azure-core-test"
}
}