Explorar el Código

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 hace 4 años
padre
commit
f7c04b2574
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  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"
 }