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-gradle-plugin.git
The following commit(s) were added to refs/heads/7.0.x by this push:
new 9064eb0a build: switch develocity instance (#439)
9064eb0a is described below
commit 9064eb0afe36788a2ca6f625f8ff6ec6556ed1b3
Author: Mattias Reichel <[email protected]>
AuthorDate: Thu Apr 10 13:40:43 2025 +0200
build: switch develocity instance (#439)
---
settings.gradle | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/settings.gradle b/settings.gradle
index a27cfadb..d243c107 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,5 +1,5 @@
plugins {
- id 'com.gradle.develocity' version '3.19.2'
+ id 'com.gradle.develocity' version '4.0'
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.2.1'
}
@@ -8,10 +8,10 @@ def isLocal = !isCI
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-gradle')
+ tag('grails-gradle-plugins')
publishing.onlyIf { isAuthenticated }
uploadInBackground = isLocal
}