Skip to content

Commit

Permalink
Switched from the Gradle Enterprise Plugin to the Develocity plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
ianbrandt committed Sep 9, 2024
1 parent 539c785 commit b3999e0
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pluginManagement {
}

plugins {
id("com.gradle.enterprise") version "3.16.2"
id("com.gradle.develocity") version "3.18"
}

dependencyResolutionManagement {
Expand All @@ -21,13 +21,11 @@ dependencyResolutionManagement {
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

gradleEnterprise {
if (System.getenv("CI") != null) {
buildScan {
publishAlways()
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
develocity {
buildScan {
publishing.onlyIf { !System.getenv("CI").isNullOrEmpty() }
termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use")
termsOfUseAgree.set("yes")
}
}

Expand Down

0 comments on commit b3999e0

Please sign in to comment.