Sfoglia il codice sorgente

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 anni fa
parent
commit
f7c04b2574
1 ha cambiato i file con 7 aggiunte e 0 eliminazioni
  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"
 }