From 1aa2dee779b1fef746384a3ea143ab50033f5074 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 18 Apr 2024 15:00:05 +0530 Subject: [PATCH] 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 --- settings.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.gradle.kts b/settings.gradle.kts index 4e2403f3..a383e8b4 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -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() } }