Skip to content

Commit 01ace7d

Browse files
GooolerTWiStErRob
andauthored
Migrate to develocity plugin (#328)
* Migrate to develocity plugin https://docs.gradle.com/enterprise/gradle-plugin/legacy/#develocity_migration * Update settings.gradle.kts Co-authored-by: Róbert Papp <[email protected]> * Update settings.gradle.kts Co-authored-by: Róbert Papp <[email protected]> * Update settings.gradle.kts Co-authored-by: Róbert Papp <[email protected]> --------- Co-authored-by: Róbert Papp <[email protected]>
1 parent 97d3c18 commit 01ace7d

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

settings.gradle.kts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
plugins {
2-
id("com.gradle.enterprise") version "3.17"
2+
id("com.gradle.develocity") version "3.17"
33
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
44
}
55

6-
val isCiBuild = System.getenv("CI") != null
7-
8-
gradleEnterprise {
6+
develocity {
97
buildScan {
10-
termsOfServiceUrl = "https://gradle.com/terms-of-service"
11-
termsOfServiceAgree = "yes"
12-
publishAlwaysIf(isCiBuild)
8+
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
9+
termsOfUseAgree = "yes"
10+
uploadInBackground = false
11+
publishing.onlyIf { System.getenv("CI") != null }
1312
}
1413
}
1514

0 commit comments

Comments
 (0)