Skip to content

Commit 7bee410

Browse files
authored
build: switch develocity instance (#237)
1 parent 18e4c6f commit 7bee410

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

settings.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
plugins {
2-
id 'com.gradle.develocity' version '3.19'
3-
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2'
2+
id 'com.gradle.develocity' version '4.0'
3+
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.2.1'
44
}
55

6-
def isCI = System.getenv('CI') != null
6+
def isCI = System.getenv().containsKey('CI')
77
def isLocal = !isCI
8-
def isAuthenticated = System.getenv('GRAILS_DEVELOCITY_ACCESS_KEY') != null
8+
def isAuthenticated = System.getenv().containsKey('GRAILS_DEVELOCITY_ACCESS_KEY')
99

1010
develocity {
11-
server = 'https://ge.apache.org'
11+
server = 'https://ge.grails.org'
1212
buildScan {
1313
tag('grails')
14-
tag('grails-gsp')
14+
tag('grails-cache')
1515
publishing.onlyIf { isAuthenticated }
1616
uploadInBackground = isLocal
1717
}

0 commit comments

Comments
 (0)