LUCENE-10138: Use maven central to resolve third-party gradle plugins (#336)

The gradle plugin portal uses jcenter to resolve third-party plugins, which
can be flaky. This commit instructs gradle to look first in maven central,
and only use the plugin portal for gradle's own plugins.
This commit is contained in:
Alan Woodward 2021-09-30 11:41:05 +01:00 committed by GitHub
parent 3e568b911f
commit ca810e732d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -15,6 +15,13 @@
* limitations under the License.
*/
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
}
rootProject.name = "lucene-root"
includeBuild("dev-tools/missing-doclet")