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 bb926c0 commit 36414efCopy full SHA for 36414ef
settings.gradle.kts
@@ -49,14 +49,10 @@ dependencyResolutionManagement {
49
}
50
51
val develocityServer = "https://develocity.opentelemetry.io"
52
-val isCI = System.getenv("CI") != null
53
val develocityAccessKey = System.getenv("DEVELOCITY_ACCESS_KEY") ?: ""
54
55
-// if develocity access key is not given and we are in CI, then we publish to scans.gradle.com
56
-val useScansGradleCom = isCI && develocityAccessKey.isEmpty()
57
-
58
develocity {
59
- if (useScansGradleCom) {
+ if (develocityAccessKey.isEmpty()) {
60
buildScan {
61
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
62
termsOfUseAgree = "yes"
0 commit comments