We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6a022c commit c947d3dCopy full SHA for c947d3d
settings.gradle
@@ -1,14 +1,14 @@
1
plugins {
2
- id 'com.gradle.develocity' version '3.19.1'
3
- 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'
4
}
5
6
-def isCI = System.getenv('CI') != null
+def isCI = System.getenv().containsKey('CI')
7
def isLocal = !isCI
8
-def isAuthenticated = System.getenv('GRAILS_DEVELOCITY_ACCESS_KEY') != null
+def isAuthenticated = System.getenv().containsKey('GRAILS_DEVELOCITY_ACCESS_KEY')
9
10
develocity {
11
- server = 'https://ge.apache.org'
+ server = 'https://ge.grails.org'
12
buildScan {
13
tag('grails')
14
tag('grails-data-mapping')
0 commit comments