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-forge.git
The following commit(s) were added to refs/heads/7.0.x by this push:
new a68ec70 Update develocity settings (#551)
a68ec70 is described below
commit a68ec70d574707b5a06ddf276d272db11fadf22d
Author: Mattias Reichel <[email protected]>
AuthorDate: Thu Apr 10 13:39:18 2025 +0200
Update develocity settings (#551)
* build: update develocity settings
* chore: cleanup
---
gradle.properties | 2 --
settings.gradle | 8 ++++----
2 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/gradle.properties b/gradle.properties
index 1623878..6021229 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -18,8 +18,6 @@ antlr4Version=4.8-1!!
asciidoctorGradleJvmVersion=4.0.4
cglibVersion=3.3.0
commonsCompressVersion=1.27.1
-customUserDataVersion=2.1
-develocityVersion=3.19.2
gradleSdkvendorPluginVersion=3.0.0
groovyVersion=3.0.24
jacksonDatabindVersion=2.18.3
diff --git a/settings.gradle b/settings.gradle
index b3c94ab..04bb2ea 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -10,13 +10,13 @@ buildscript {
}
}
plugins {
- id "com.gradle.develocity" version "$develocityVersion"
- id "com.gradle.common-custom-user-data-gradle-plugin" version
"$customUserDataVersion"
+ 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'