Skip to content

Commit

Permalink
Replace gradle enterprise with develocity (#661)
Browse files Browse the repository at this point in the history
  • Loading branch information
eygraber committed Apr 2, 2024
1 parent e9aaac1 commit 639c751
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import com.eygraber.conventions.Env
import com.eygraber.conventions.repositories.addCommonRepositories

pluginManagement {
Expand Down Expand Up @@ -52,7 +53,7 @@ dependencyResolutionManagement {

plugins {
id("com.eygraber.conventions.settings") version "0.0.70"
id("com.gradle.enterprise") version "3.17"
id("com.gradle.develocity") version "3.17"
}

rootProject.name = "portals"
Expand All @@ -75,12 +76,12 @@ include(":samples:simple-portal:webApp")

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

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

0 comments on commit 639c751

Please sign in to comment.