From feb7ce38312144d1bea706b19e248b63aeb0f51a Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Wed, 5 Feb 2025 11:47:05 +0100 Subject: [PATCH] Remove manual develocity config This should have been removed when we upgraded to "io.spring.develocity.conventions:0.0.22". I suspect this is the reason we are not getting build scan URLs in GitHub action runs anymore. --- settings.gradle | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/settings.gradle b/settings.gradle index 3ca52e74..a86f18d8 100644 --- a/settings.gradle +++ b/settings.gradle @@ -22,18 +22,3 @@ include 'platform', 'spring-graphql-test', 'spring-graphql-docs' -settings.gradle.projectsLoaded { - develocity { - buildScan { - File buildDir = settings.gradle.rootProject - .getLayout().getBuildDirectory().getAsFile().get() - buildDir.mkdirs() - new File(buildDir, "build-scan-uri.txt").text = "(build scan not generated)" - buildScanPublished { scan -> - if (buildDir.exists()) { - new File(buildDir, "build-scan-uri.txt").text = "${scan.buildScanUri}\n" - } - } - } - } -}