From fd2aaa8c2bfa669f48309477e11f32659eb54e5d Mon Sep 17 00:00:00 2001 From: Adam Brown Date: Mon, 31 Jan 2022 15:29:31 +0000 Subject: [PATCH] prioritizing the maven central build repository as it appears that dependabot is only using the first 2 defined maven repositories for the build scans --- build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 5fdeba24de..a8d794a55e 100644 --- a/build.gradle +++ b/build.gradle @@ -36,6 +36,12 @@ allprojects { apply plugin: "org.jlleitschuh.gradle.ktlint" repositories { + mavenCentral { + content { + groups.mavenCentral.regex.each { includeGroupByRegex it } + groups.mavenCentral.group.each { includeGroup it } + } + } maven { url 'https://jitpack.io' content { @@ -59,12 +65,6 @@ allprojects { groups.google.group.each { includeGroup it } } } - mavenCentral { - content { - groups.mavenCentral.regex.each { includeGroupByRegex it } - groups.mavenCentral.group.each { includeGroup it } - } - } //noinspection JcenterRepositoryObsolete jcenter { content {