com.gradle.develocity
Owner:
Gradle
Develocity® combines acceleration technologies and troubleshooting features with toolchain observability, empowering Gradle Build Tool users to speed up feedback cycles, accelerate troubleshooting, and measure and improve key performance metrics.
Version 4.4.0 (latest)
Created 25 March 2026.
Develocity® combines acceleration technologies and troubleshooting features with toolchain observability, empowering Gradle Build Tool users to speed up feedback cycles, accelerate troubleshooting, and measure and improve key performance metrics. Please see the official documentation for more details: - Changelog (https://gradle.com/help/gradle-plugin-release-history/) - Getting Started (https://gradle.com/help/gradle-plugin-getting-started/) - User Manual (https://gradle.com/help/gradle-plugin/) - Compatibility (https://gradle.com/help/gradle-plugin-compatibility/)
Add this plugin to your build using the plugins DSL:
plugins {
id("com.gradle.develocity") version "4.4.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.develocity:com.gradle.develocity.gradle.plugin:4.4.0") }It can then be applied in the precompiled script plugin:plugins { id("com.gradle.develocity") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.gradle.develocity:com.gradle.develocity.gradle.plugin:4.4.0") } } apply(plugin = "com.gradle.develocity") - Applying plugins to all subprojects .