Develocity Artifact Cache CLI User Manual
Introduction
Develocity Artifact Cache and Setup Cache enables caching of build dependencies and build inputs required by Gradle, Maven and npm builds. This is especially useful in ephemeral CI environments where build agents are frequently created and destroyed, leading to the loss of local caches between builds.
Artifact Cache is designed to eliminate the bottlenecks caused by downloading dependencies from the WAN (Wide Area Network).
It acts as an intermediary between your builds and external repositories (such as Maven Central and npm) or internal artifact managers (like Artifactory).
To use it, the entitlement Artifact Cache must be enabled on your Develocity license.
Setup Cache targets the initialization phase of the build, which is often a hidden tax on developer productivity.
In a typical "cold" CI run, build tools like Gradle must perform compute-intensive tasks before they even begin executing the build.
This includes recompiling build scripts, parsing configurations, and calculating file hashes.
To use it, the entitlement Setup Cache must be enabled on your Develocity license.
Develocity Artifact Cache and Setup Cache is delivered as a unified service through Develocity Edges which serve as persistent cache for build artifacts that Artifact Cache CLI can later use to restore CI agent state.
Using Artifact Cache CLI
The Artifact Cache CLI is a command-line tool that stores and restores build artifacts (build dependencies and other build inputs) to the unified Develocity Artifact Cache and Setup Cache service provided by Develocity Edge nodes.
Key Components
- Artifact Cache CLI
-
An application that runs on the CI agent. Handles capture and retrieval of build dependencies and other build inputs to and from the Develocity Artifact Cache and Setup Cache service.
- Edge
-
Comprises one or more Edge nodes deployed near CI infrastructure. Each Edge node manages available storage through eviction, stores and retrieves build artifacts to Artifact Cache CLI clients when requested.
- Develocity
-
Manages access control and enables Edge discovery for Artifact Cache CLI clients.
- Image
-
A metadata file that lists all build artifacts available from the Develocity Artifact Cache and Setup Cache for a specific CI job. Tracked separately for each CI job, branch, and environment.
Develocity Artifact Cache and Setup Cache Operation Flow
Edge Discovery
The Artifact Cache CLI uses Edge discovery to connect to the optimal Edge:
-
Artifact Cache CLI reads the access key of a CI agent Develocity user from the environment variable
DEVELOCITY_ACCESS_KEY. -
Access key identifies a Develocity user.
-
The CI agent Develocity user has the Edge location configured.
-
Artifact Cache CLI connects exclusively to that Edge for the Restore and Store phases.
Alternatively, the --dv-edge option can be used to connect directly to a specific Edge node, bypassing automatic discovery.
| The "Preferred location" for the CI agent’s user must be set to one that doesn’t have Develocity server in it. A user’s "Preferred location" can be changed in Develocity by logging in as that user and navigating to the "My Settings - Location" page in the right-hand menu. |
Restore Phase
-
CI job starts - Fresh ephemeral CI agent is created.
-
Checkout code - Repository is cloned.
-
Artifact Cache CLI queries Edge - Requests the image for this job/branch.
-
Edge returns image - Lists all known artifacts for this job.
-
Restore artifacts - Artifact Cache CLI downloads only missing artifacts.
Store Phase
-
Build completes - The build tool process exits.
-
Artifact Cache CLI scans directories - Identifies new or changed artifacts.
-
Store new artifacts - Upload to Edge node.
-
Update image - Records the up-to-date artifact list.
-
Image stored to Edge - Updated image is ready for use by the next CI job.
Hosting the Artifact Cache CLI Binary
| You must host the Artifact Cache CLI binary within your internal network. This is required for security and reliability. |
Download the CLI binary and upload it to your internal artifact repository (such as Artifactory, Nexus, or a simple file server). This approach ensures:
-
Control over artifact availability
-
Compliance with corporate security policies
-
Optimal download speeds
Download
You can download the latest version of develocity-artifact-cache-cli JAR file and its associated files from the following links:
curl -L -o develocity-artifact-cache-cli.jar https://docs.gradle.com/downloads/develocity-artifact-cache-cli/develocity-artifact-cache-cli-1.0.0.jar
To validate the binary:
-
Download the checksum file:
curl -L -o develocity-artifact-cache-cli-1.0.0.jar.sha256 https://docs.gradle.com/downloads/develocity-artifact-cache-cli/develocity-artifact-cache-cli-1.0.0.jar.sha256 -
Validate the binary against the checksum file:
echo "$(cat develocity-artifact-cache-cli-1.0.0.jar.sha256) develocity-artifact-cache-cli.jar" | sha256sum --check -
If valid, the output is:
Outputdevelocity-artifact-cache-cli: OK
-
If the check fails,
sha256exits with nonzero status and prints output similar to:Outputdevelocity-artifact-cache-cli: FAILED sha256sum: WARNING: 1 computed checksum did NOT match
Download the same version of the binary and checksum.
Verifying the GPG Signature
The develocity-artifact-cache-cli JAR is published alongside its PGP signature.
The public key is published to https://keys.openpgp.org.
You can verify the signature as follows:
curl -OL https://docs.gradle.com/downloads/develocity-artifact-cache-cli/develocity-artifact-cache-cli-1.0.0.jar && \
curl -OL https://docs.gradle.com/downloads/develocity-artifact-cache-cli/develocity-artifact-cache-cli-1.0.0.jar.asc && \
gpg --keyserver keys.openpgp.org --recv-key 7B79ADD11F8A779FE90FD3D0893A028475557671 && \
gpg --verify develocity-artifact-cache-cli-1.0.0.jar.asc develocity-artifact-cache-cli-1.0.0.jar
The output of the last command should look similar to the following:
gpg: Signature made Wed Mar 25 14:50:57 2026 CET gpg: using RSA key 893A028475557671 gpg: Good signature from "Gradle Inc. <info@gradle.com>" [unknown] gpg: WARNING: This key is not certified with a trusted signature! gpg: There is no indication that the signature belongs to the owner. Primary key fingerprint: 7B79 ADD1 1F8A 779F E90F D3D0 893A 0284 7555 7671
This verifies that the artifact was signed with the private key that corresponds to the imported public key.
The warning is emitted because you haven’t explicitly trusted the imported key (therefore [unknown]).
One way of establishing trust is to verify the fingerprint over a secure channel.
Please contact technical support should you want to do so.
Requirements
|
The Artifact Cache requires a Develocity license. |
For details on the build infrastructure and other requirements to use Develocity Artifact Cache and Setup Cache, please refer to the System Requirements section.
Getting Started
Develocity Artifact Cache and Setup Cache integrates with any CI platform that supports running shell commands.
See these guides for specific platforms that can help you get started:
Artifact Cache CLI Commands
Refer to the Artifact Cache CLI Commands Reference for detailed information on available commands and their usage.
Observability
Build Scan Reporting
By applying version 2.1.0 or above of the Common Custom User Data Gradle plugin or Common Custom User Data Maven extension, Artifact Cache and Setup Cache configuration and restore phase metrics will be automatically added to every Build Scan as Custom Values.
| The "Artifact Cache: Restore wall-clock duration" value is the total duration of the restore phase from both the Artifact Cache and Setup Cache. |
Develocity Reporting and Visualization
The "Dependency Caching" dashboard in Develocity Reporting and Visualization provides an overview of the ratio of dependencies downloaded versus resolved from the local cache, across all projects and builds. The dashboard supports Gradle and Maven builds running locally and on CI, and detects cached dependency files regardless of the caching solution used. When Artifact Cache is enabled, the visualizations display the actual reduction in dependency downloads achieved by the feature. The dashboard includes filters by build tool, project, and tags to enable in-depth analysis of caching performance.
|
The "Dependency Caching" dashboard requires Develocity 2026.1 and Develocity Gradle plugin 4.4.0 or Develocity Maven extension 2.4.0. |
Develocity Artifact Cache and Setup Cache Service Monitoring
The Develocity Artifact Cache and Setup Cache service exposed by Edge nodes can be monitored by following the Monitoring section of the Develocity Edge User Manual.