Skip to content

Commit

Permalink
πŸ”„ Resolve deprecation in terms of configuration in build scan setup
Browse files Browse the repository at this point in the history
This commit updates the build scan configuration in the `settings.gradle.kts` file, replacing the `gradleEnterprise` block with a `develocity` block. The terms of service references were also updated to reflect the new terms of use, changing `termsOfServiceUrl` to `termsOfUseUrl` and `termsOfServiceAgree` to `termsOfUseAgree`. These changes ensure that the project's build scan setup aligns with the latest terms and configuration requirements.
  • Loading branch information
CXwudi committed Apr 22, 2024
1 parent 7b738a7 commit fcb4685
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ plugins {
id("my.root-settings-plugins")
}

gradleEnterprise {
develocity {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
}
}

Expand Down

0 comments on commit fcb4685

Please sign in to comment.