Skip to content

Commit 4cc8a79

Browse files
author
Harrison Cole
committed
Enable com.gradle.develocity plugin.
1 parent a3b25b0 commit 4cc8a79

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

settings.gradle

+11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
plugins {
2+
id 'com.gradle.develocity' version '3.19'
23
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.9.0'
34
}
45

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+
}
516

617
dependencyResolutionManagement {
718
repositories {

0 commit comments

Comments
 (0)