diff --git a/settings.gradle b/settings.gradle index 2e52ea7be..840269a36 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,6 +1,6 @@ // publish build scans from CI builds plugins { - id "com.gradle.develocity" version "3.17.6" + id "com.gradle.develocity" version "3.18.1" id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2' } @@ -8,9 +8,16 @@ plugins { def isCI = System.getenv('CI') != null develocity { - server = "https://ge.gradle.org" + server = "https://develocity-staging.eclipse.org" buildScan { - publishing.onlyIf { isCI } + publishing.onlyIf { true } + obfuscation { + username { name -> isCI ? 'ci' : 'local' } + ipAddresses { addresses -> addresses.collect { address -> "0.0.0.0" } } + externalProcessName { processName -> "non-build-process" } + hostname { host -> isCI ? 'ci' : 'local' } + + } uploadInBackground = !isCI } }