Skip to content

Commit

Permalink
Replace gradle enterprise with develocity (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
eygraber committed Apr 2, 2024
1 parent c80641e commit 84d76f7
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import com.eygraber.conventions.Env

pluginManagement {
repositories {
mavenCentral()
Expand All @@ -17,17 +19,17 @@ 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 = "jsonpathkt"

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"
}
}
}
Expand Down

0 comments on commit 84d76f7

Please sign in to comment.