From a249a1b2394443d80dc23438999fd68690d35673 Mon Sep 17 00:00:00 2001 From: Mattias Reichel Date: Tue, 30 Jul 2024 16:09:00 +0200 Subject: [PATCH] ci: Fix problem locating build component The transitive build script dependency `org.jfrog.buildinfo:build-info-extractor:2.3.2` cannot be found. This commit adds Groovy's artifactory repo to the build script repositories, to make the build find the missing dependency. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 7cf869227dc..b497c0462c3 100644 --- a/build.gradle +++ b/build.gradle @@ -28,7 +28,7 @@ buildscript { maven { url 'https://plugins.gradle.org/m2/' } // uncomment next repo if jcenter isn't available // we have some build components mirrored there -// maven { url 'https://groovy.jfrog.io/artifactory/libs-release-local/' } + maven { url 'https://groovy.jfrog.io/artifactory/libs-release-local/' } maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } maven { url 'https://jitpack.io' } }