소스 검색

build.gradle: search for artifacts at MavenCentral before trying JCenter

Stephen Gold 4 년 전
부모
커밋
10b2dcfb15
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      build.gradle

+ 2 - 0
build.gradle

@@ -3,6 +3,7 @@ import java.nio.file.StandardCopyOption;
 
 buildscript {
     repositories {
+        mavenCentral()
         google()
         jcenter()
         maven {
@@ -19,6 +20,7 @@ buildscript {
 
 allprojects {
     repositories {
+        mavenCentral()
         google()
         jcenter()
     }