aboutsummaryrefslogtreecommitdiff
path: root/protobuf
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 /protobuf
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 'protobuf')
-rw-r--r--protobuf/build.gradle5
1 files changed, 4 insertions, 1 deletions
diff --git a/protobuf/build.gradle b/protobuf/build.gradle
index 9ce87b9ab..2d4a8a8c5 100644
--- a/protobuf/build.gradle
+++ b/protobuf/build.gradle
@@ -2,7 +2,10 @@ description = 'gRPC: Protobuf'
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 libraries.protobuf_plugin