Skip to content

Commit

Permalink
Merge pull request #53 from amzn/rwo/build-scan
Browse files Browse the repository at this point in the history
Publish build scans in CI
  • Loading branch information
vRallev authored Oct 21, 2024
2 parents ac61419 + 36061fd commit 2366957
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,22 @@ pluginManagement {
}
}

plugins {
id "com.gradle.develocity" version "3.18.1"
}

develocity {
buildScan {
publishing.onlyIf {
providers.environmentVariable("CI").isPresent() ||
providers.systemProperty("CI").isPresent() ||
providers.gradleProperty("CI").isPresent()
}
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
}
}

rootProject.name = 'kotlin-inject-anvil'

include ':compiler'
Expand Down

0 comments on commit 2366957

Please sign in to comment.