From 41f3f9e79b2cbcda92c2dcb413bfab2493eb3166 Mon Sep 17 00:00:00 2001 From: Julien HENRY Date: Wed, 12 Nov 2025 11:26:30 +0100 Subject: [PATCH] BUILD-9143 Develocity public docs --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index ca17d7e2..7c0e4ab6 100644 --- a/README.md +++ b/README.md @@ -233,6 +233,18 @@ Build and deploy a Maven project with SonarQube analysis and Artifactory deploym - The Java and Maven tools must be pre-installed. Use of `mise` is recommended. - The "Sonar parent POM" (`[org|com].sonarsource.parent:parent`) must be used. There's a public POM (org) and a private POM (com), respectively for public or private code. +- **Develocity**: In order to access Develocity from GitHub hosted runner e.g. `github-ubuntu-latest-s` you need to adjust your + Develocity plugin configuration to use the following URL: + +```yaml + + + https://develocity-public.sonar.build + + +``` + +**You also need to provide the same url in `develocity-url` parameter.** ### Usage @@ -535,6 +547,18 @@ Build and publish a Gradle project with SonarQube analysis and Artifactory deplo **Gradle**: Not pre-installed in the runner image. We recommend including the Gradle wrapper (`gradlew`) in your repository, which will be used automatically. If the Gradle wrapper is not available, you can install Gradle using `mise` in your pipeline. +**Develocity**: In order to access Develocity from GitHub hosted runner e.g. `github-ubuntu-latest-s` you need to adjust your +Develocity plugin configuration to use the following URL: + +```yaml + develocity { + server = "https://develocity-public.sonar.build" + ... + } +``` + +**You also need to provide the same url in `develocity-url` parameter.** + **Additional Configuration**: The Gradle Artifactory plugin configuration is required in `build.gradle` file. ### Usage