Skip to content

Commit

Permalink
Migrate to develocity plugin (#4356)
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler authored Apr 4, 2024
1 parent a312492 commit d01d4b2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ pluginManagement {
}

plugins {
id 'com.gradle.enterprise' version '3.17'
id 'com.gradle.develocity' version '3.17'
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
}

def isCI = providers.environmentVariable("CI").isPresent()
def isCI = providers.environmentVariable("CI").present

gradleEnterprise {
develocity {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlwaysIf(isCI)
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
publishing.onlyIf { isCI }
}
}

Expand Down

0 comments on commit d01d4b2

Please sign in to comment.