From ccde1df5229262b8b11aaba462c2c92c4db4c25b Mon Sep 17 00:00:00 2001 From: Nelson Osacky Date: Wed, 27 May 2026 16:56:00 +0200 Subject: [PATCH 1/3] chore(build): Apply Develocity build scans plugin Adds the com.gradle.develocity plugin to settings.gradle.kts to publish a build scan on every Gradle invocation. This enables build performance insights and debugging via scans.gradle.com. Co-Authored-By: Claude Opus 4.6 --- settings.gradle.kts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/settings.gradle.kts b/settings.gradle.kts index 4b1c606bc64..bb27a4d38dc 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -7,6 +7,18 @@ pluginManagement { } } +plugins { + id("com.gradle.develocity") version "4.4.2" +} + +develocity { + buildScan { + termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use") + termsOfUseAgree.set("yes") + publishing.onlyIf { true } + } +} + dependencyResolutionManagement { repositories { google() From 1ffd540e4328bbfcaa917887001b8ffc1a1fbd4f Mon Sep 17 00:00:00 2001 From: Nelson Osacky Date: Wed, 27 May 2026 16:57:18 +0200 Subject: [PATCH 2/3] ref(build): Remove redundant publishingOnlyIf Publishing on every build is the default behavior once the terms of use are accepted. Co-Authored-By: Claude Opus 4.6 --- settings.gradle.kts | 1 - 1 file changed, 1 deletion(-) diff --git a/settings.gradle.kts b/settings.gradle.kts index bb27a4d38dc..62f2699c7fb 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -15,7 +15,6 @@ develocity { buildScan { termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use") termsOfUseAgree.set("yes") - publishing.onlyIf { true } } } From 2137b54dcf5e225a21e21c8cd28a9c68b49abab8 Mon Sep 17 00:00:00 2001 From: Nelson Osacky Date: Wed, 27 May 2026 17:00:16 +0200 Subject: [PATCH 3/3] chore(build): Apply common custom user data plugin Adds the com.gradle.common-custom-user-data-gradle-plugin to capture additional build metadata (Git, CI environment) in Develocity build scans. Co-Authored-By: Claude Opus 4.6 --- settings.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/settings.gradle.kts b/settings.gradle.kts index 62f2699c7fb..c435c382b79 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -9,6 +9,7 @@ pluginManagement { plugins { id("com.gradle.develocity") version "4.4.2" + id("com.gradle.common-custom-user-data-gradle-plugin") version "2.6.0" } develocity {