com.gradle.common-custom-user-data-gradle-plugin
Owner:
Gradle
A Gradle plugin that enhances Develocity Build Scan® with useful metadata, such as Git details, CI provider information, and operating system properties.
https://github.com/gradle/common-custom-user-data-gradle-plugin
Sources: https://github.com/gradle/common-custom-user-data-gradle-plugin
Version 2.7.0 (latest)
Created 29 June 2026.
- [NEW] Capture Cursor as an AI agent via the `CURSOR_AGENT` environment variable - [NEW] Capture Gemini in Android Studio as an AI agent via the `ANDROID_STUDIO_AGENT` environment variable - [FIX] Changes to AI agent metadata invalidate the configuration cache
Add this plugin to your build using the plugins DSL:
plugins {
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.7.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.gradle.common-custom-user-data-gradle-plugin:com.gradle.common-custom-user-data-gradle-plugin.gradle.plugin:2.7.0") }It can then be applied in the precompiled script plugin:plugins { id("com.gradle.common-custom-user-data-gradle-plugin") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.gradle.common-custom-user-data-gradle-plugin:com.gradle.common-custom-user-data-gradle-plugin.gradle.plugin:2.7.0") } } apply(plugin = "com.gradle.common-custom-user-data-gradle-plugin") - Applying plugins to all subprojects .