Skip to content

Commit

Permalink
Migrate to develocity plugin (#755)
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler authored Apr 18, 2024
1 parent 89b686b commit 6a157a5
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,17 @@ pluginManagement {
}

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

gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlways()
}
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
// TODO: workaround for https://github.com/gradle/gradle/issues/22879.
val isCI = providers.environmentVariable("CI").isPresent
publishing.onlyIf { isCI }
}
}

include(":plugin")
Expand Down

0 comments on commit 6a157a5

Please sign in to comment.