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-doc.git
The following commit(s) were added to refs/heads/7.0.x by this push:
new a96d791b61 build: update develocity settings (#969)
a96d791b61 is described below
commit a96d791b610527a12c93aaa880c4f4a519a4180a
Author: Mattias Reichel <[email protected]>
AuthorDate: Thu Apr 10 13:27:36 2025 +0200
build: update develocity settings (#969)
---
settings.gradle | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/settings.gradle b/settings.gradle
index 70dd56f87f..3479aad5b5 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,11 +1,11 @@
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('DEVELOCITY_ACCESS_KEY') != null
+def isAuthenticated =
System.getenv().containsKey('GRAILS_DEVELOCITY_ACCESS_KEY')
develocity {
server = 'https://ge.grails.org'