This is an automated email from the ASF dual-hosted git repository.
matrei pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/grails-views.git
The following commit(s) were added to refs/heads/7.0.x by this push:
new 37e4796a1 build: switch develocity instance (#733)
37e4796a1 is described below
commit 37e4796a141acb4a9ee80d9b2ec854ef4c8e7696
Author: Mattias Reichel <[email protected]>
AuthorDate: Thu Apr 10 13:32:46 2025 +0200
build: switch develocity instance (#733)
---
settings.gradle | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/settings.gradle b/settings.gradle
index 15fafd6f9..2dce9e276 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,14 +1,14 @@
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-views')