Skip to content

Commit c243f61

Browse files
authored
Add Develocity plugin and build scan configuration
1 parent 39fb57c commit c243f61

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

settings.gradle.kts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,14 @@ pluginManagement {
1414
gradlePluginPortal()
1515
}
1616
}
17+
18+
plugins { id("com.gradle.develocity") version "4.3.2" }
19+
20+
develocity {
21+
buildScan {
22+
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
23+
termsOfUseAgree = "yes"
24+
val isCI = providers.environmentVariable("CI").isPresent
25+
publishing.onlyIf { isCI }
26+
}
27+
}

0 commit comments

Comments
 (0)