Skip to content

Commit b8ed47a

Browse files
runningcodeclaude
andauthored
chore(build): Apply Develocity build scans plugin (#5469)
* 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 <noreply@anthropic.com> * 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 <noreply@anthropic.com> * 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 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 14c1d7e commit b8ed47a

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

settings.gradle.kts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ pluginManagement {
77
}
88
}
99

10+
plugins {
11+
id("com.gradle.develocity") version "4.4.2"
12+
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.6.0"
13+
}
14+
15+
develocity {
16+
buildScan {
17+
termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use")
18+
termsOfUseAgree.set("yes")
19+
}
20+
}
21+
1022
dependencyResolutionManagement {
1123
repositories {
1224
google()

0 commit comments

Comments
 (0)