Switch to develocity plugin

This commit is contained in:
Erik C. Thauvin 2025-04-25 21:31:44 -07:00
parent e0410b6d9d
commit 3709cb08fc
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -1,17 +1,17 @@
plugins { plugins {
id("com.gradle.enterprise").version("3.19.2") id("com.gradle.develocity") version "4.0.1"
} }
gradleEnterprise { develocity {
buildScan { buildScan {
link("GitHub", "https://github.com/ethauvin/semver/tree/master") link("GitHub", "https://github.com/ethauvin/semver/tree/master")
if (!System.getenv("CI").isNullOrEmpty()) { if (!System.getenv("CI").isNullOrEmpty()) {
isUploadInBackground = false uploadInBackground.set(false)
publishOnFailure() publishing.onlyIf { true }
tag("CI") tag("CI")
} }
termsOfServiceUrl = "https://gradle.com/terms-of-service" termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use")
termsOfServiceAgree = "yes" termsOfUseAgree.set("yes")
} }
} }