fix(build): revert Develocity ToS url change

It redirects to the one I had set but the plugin still expects the older one.

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2024-04-18 15:00:05 +05:30 committed by GitHub
parent 7f4a382f40
commit 1aa2dee779
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ plugins {
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/legal/terms-of-use/"
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
termsOfUseAgree = if (System.getenv("GITHUB_WORKFLOW").isNullOrEmpty()) "no" else "yes"
publishing.onlyIf { !System.getenv("GITHUB_WORKFLOW").isNullOrEmpty() }
}