This is an automated email from the ASF dual-hosted git repository.
matrei pushed a commit to branch 5.0.x
in repository https://gitbox.apache.org/repos/asf/grails-geb.git
The following commit(s) were added to refs/heads/5.0.x by this push:
new 4f40bbc build: switch develocity instance (#162)
4f40bbc is described below
commit 4f40bbc01452ad3b208e83074ea43ff0b81220ce
Author: Mattias Reichel <[email protected]>
AuthorDate: Thu Apr 10 13:25:42 2025 +0200
build: switch develocity instance (#162)
---
settings.gradle | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/settings.gradle b/settings.gradle
index bf10ce2..71935e2 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,14 +1,14 @@
plugins {
- id 'com.gradle.develocity' version '3.19.1'
- id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.1'
+ 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-geb')