Ver código fonte

Resolve thirdparty gradle plugin artifacts from mavencentral (#77865)

This should give us a little more decoupling from jcenter as the
gradle plugin portal tries resolving thirdparty plugin dependencies from
jcenter by default.
This should shield us a bit better from jcenter outtakes that transiently
cause issues resolving from the gradle plugin portal
Rene Groeschke 4 anos atrás
pai
commit
f7c04b2574
1 arquivos alterados com 7 adições e 0 exclusões
  1. 7 0
      settings.gradle

+ 7 - 0
settings.gradle

@@ -1,3 +1,10 @@
+pluginManagement {
+  repositories {
+    mavenCentral()
+    gradlePluginPortal()
+  }
+}
+
 plugins {
   id "com.gradle.enterprise" version "3.6.4"
 }