File tree 2 files changed +10
-46
lines changed
2 files changed +10
-46
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ plugins {
19
19
id ' com.adarshr.test-logger' version ' 4.0.0' apply false
20
20
// https://github.com/davidburstrom/version-compatibility-gradle-plugin/tags
21
21
id ' io.github.davidburstrom.version-compatibility' version ' 0.5.0' apply false
22
- // https://plugins.gradle.org/plugin/com.gradle.enterprise
23
- id ' com.gradle.enterprise ' version ' 3.16 '
22
+ // https://plugins.gradle.org/plugin/com.gradle.develocity
23
+ id ' com.gradle.develocity ' version ' 3.17 '
24
24
// https://github.com/equodev/equo-ide/blob/main/plugin-gradle/CHANGELOG.md
25
25
id ' dev.equo.ide' version ' 1.7.5' apply false
26
26
}
@@ -59,11 +59,15 @@ if (System.env['CI'] != null) {
59
59
}
60
60
}
61
61
62
- gradleEnterprise {
62
+ def isCI = providers. environmentVariable(' CI' ). present
63
+
64
+ develocity {
63
65
buildScan {
64
- termsOfServiceUrl = " https://gradle.com/terms-of-service"
65
- termsOfServiceAgree = " yes"
66
- publishAlwaysIf(providers. environmentVariable(' CI' ). present)
66
+ termsOfUseUrl = " https://gradle.com/terms-of-service"
67
+ termsOfUseAgree = " yes"
68
+ publishing {
69
+ onlyIf { isCI }
70
+ }
67
71
}
68
72
}
69
73
You can’t perform that action at this time.
0 commit comments