aboutsummaryrefslogtreecommitdiff
path: root/all
diff options
context:
space:
mode:
authorzpencer <spencerfang@google.com>2018-03-01 19:11:24 -0800
committerGitHub <noreply@github.com>2018-03-01 19:11:24 -0800
commit066ad3ceac43907ea419d5f7c05d53ff2a11f08c (patch)
tree3e05aeddf5eab11743a6fde73ce4a4cde0f1dba4 /all
parentc07ad68cbd4fd836900c166693cdaa2c7613edc0 (diff)
downloadgrpc-grpc-java-066ad3ceac43907ea419d5f7c05d53ff2a11f08c.tar.gz
buildscripts,travis: fetch from mvn with retries (#4140)
A band aid for #3284, to make its symptoms less noticeable.
Diffstat (limited to 'all')
-rw-r--r--all/build.gradle5
1 files changed, 4 insertions, 1 deletions
diff --git a/all/build.gradle b/all/build.gradle
index 138795323..95942b4dd 100644
--- a/all/build.gradle
+++ b/all/build.gradle
@@ -4,7 +4,10 @@ description = "gRPC: All"
buildscript {
repositories {
- mavenCentral()
+ maven {
+ // The google mirror is less flaky than mavenCentral()
+ url "https://maven-central.storage-download.googleapis.com/repos/central/data/"
+ }
}
dependencies {
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.0.1'