This is an automated email from the ASF dual-hosted git repository.

matrei pushed a commit to branch 8.0.x
in repository https://gitbox.apache.org/repos/asf/grails-cache.git


The following commit(s) were added to refs/heads/8.0.x by this push:
     new 7bee410b build: switch develocity instance (#237)
7bee410b is described below

commit 7bee410bfad14018a5cd02998243ce3dc04fe1a7
Author: Mattias Reichel <[email protected]>
AuthorDate: Thu Apr 10 13:34:13 2025 +0200

    build: switch develocity instance (#237)
---
 settings.gradle | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/settings.gradle b/settings.gradle
index b0b3ea9e..2893f899 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,17 +1,17 @@
 plugins {
-    id 'com.gradle.develocity' version '3.19'
-    id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2'
+    id 'com.gradle.develocity' version '4.0'
+    id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.2.1'
 }
 
-def isCI = System.getenv('CI') != null
+def isCI = System.getenv().containsKey('CI')
 def isLocal = !isCI
-def isAuthenticated = System.getenv('GRAILS_DEVELOCITY_ACCESS_KEY') != null
+def isAuthenticated = 
System.getenv().containsKey('GRAILS_DEVELOCITY_ACCESS_KEY')
 
 develocity {
-    server = 'https://ge.apache.org'
+    server = 'https://ge.grails.org'
     buildScan {
         tag('grails')
-        tag('grails-gsp')
+        tag('grails-cache')
         publishing.onlyIf { isAuthenticated }
         uploadInBackground = isLocal
     }

Reply via email to