Skip to content

Commit

Permalink
Bump com.gradle.enterprise from 3.16.2 to 3.17 (#937)
Browse files Browse the repository at this point in the history
* Bump com.gradle.enterprise from 3.16.2 to 3.17

Bumps com.gradle.enterprise from 3.16.2 to 3.17.

---
updated-dependencies:
- dependency-name: com.gradle.enterprise
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* use develocity

* Refactor to provider

* Update settings.gradle.kts

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: hfhbd <[email protected]>
  • Loading branch information
dependabot[bot] and hfhbd committed Apr 7, 2024
1 parent 433f554 commit 265a208
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,18 @@ pluginManagement {
plugins {
id("MyRepos")
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
id("com.gradle.enterprise") version "3.16.2"
id("com.gradle.develocity") version "3.17"
}

gradleEnterprise {
develocity {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
if (System.getenv("CI") != null) {
publishAlways()
tag("CI")
termsOfUseUrl.set("https://gradle.com/terms-of-service")
termsOfUseAgree.set("yes")
publishing {
val isCI = providers.environmentVariable("CI").isPresent
onlyIf { isCI }
}
tag("CI")
}
}

Expand Down

0 comments on commit 265a208

Please sign in to comment.