This is an automated email from the ASF dual-hosted git repository.
matrei pushed a commit to branch 10.0.x
in repository https://gitbox.apache.org/repos/asf/grails-profiles.git
The following commit(s) were added to refs/heads/10.0.x by this push:
new 8cfff52 build: update develocity settings (#27)
8cfff52 is described below
commit 8cfff5248b0b5c5bc4d917ad421ea55bf54199c9
Author: Mattias Reichel <[email protected]>
AuthorDate: Thu Apr 10 13:37:27 2025 +0200
build: update develocity settings (#27)
---
settings.gradle | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/settings.gradle b/settings.gradle
index 665bfd7..4cf333d 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,11 +1,11 @@
plugins {
- id 'com.gradle.develocity' version '3.19.2'
- 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('DEVELOCITY_ACCESS_KEY') != null
+def isAuthenticated =
System.getenv().containsKey('GRAILS_DEVELOCITY_ACCESS_KEY')
develocity {
server = 'https://ge.grails.org'