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
This commit is contained in:
Rene Groeschke 2021-09-16 16:07:28 +02:00 committed by GitHub
parent edf4466548
commit f7c04b2574
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

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