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.
com.gradle.develocity
1 parent a3b25b0 commit 4cc8a79Copy full SHA for 4cc8a79
settings.gradle
@@ -1,7 +1,18 @@
1
plugins {
2
+ id 'com.gradle.develocity' version '3.19'
3
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.9.0'
4
}
5
6
+develocity {
7
+ buildScan {
8
+ final def isCI = System.getenv('CI') != null;
9
+ termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
10
+ termsOfUseAgree = "yes"
11
+ publishing.onlyIf { true }
12
+ tag(isCI ? 'CI' : 'Local')
13
+ uploadInBackground = !isCI
14
+ }
15
+}
16
17
dependencyResolutionManagement {
18
repositories {
0 commit comments