diff --git a/settings.gradle b/settings.gradle index d208a36..950707b 100644 --- a/settings.gradle +++ b/settings.gradle @@ -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'