diff --git a/integration-test/common/settings.gradle b/integration-test/common/settings.gradle index 6cbc1544..d7bc4e8e 100644 --- a/integration-test/common/settings.gradle +++ b/integration-test/common/settings.gradle @@ -1,3 +1,12 @@ +develocity { + buildScan { + termsOfUseUrl = 'https://gradle.com/terms-of-service' + termsOfUseAgree = 'yes' + + publishing.onlyIf { System.getenv("GRADLE_BUILD_SCAN") == 'true' } + } +} + rootProject.name = 'hsc-integration-test-common' /* diff --git a/integration-test/gradle-plugin/settings.gradle b/integration-test/gradle-plugin/settings.gradle index 674faeef..20959938 100644 --- a/integration-test/gradle-plugin/settings.gradle +++ b/integration-test/gradle-plugin/settings.gradle @@ -6,6 +6,15 @@ pluginManagement { } } +develocity { + buildScan { + termsOfUseUrl = 'https://gradle.com/terms-of-service' + termsOfUseAgree = 'yes' + + publishing.onlyIf { System.getenv("GRADLE_BUILD_SCAN") == 'true' } + } +} + rootProject.name = 'hsc-integration-test-gradle-plugin' /* diff --git a/integration-test/settings.gradle b/integration-test/settings.gradle index 78756f1c..368058a2 100644 --- a/integration-test/settings.gradle +++ b/integration-test/settings.gradle @@ -1,3 +1,12 @@ +develocity { + buildScan { + termsOfUseUrl = 'https://gradle.com/terms-of-service' + termsOfUseAgree = 'yes' + + publishing.onlyIf { System.getenv("GRADLE_BUILD_SCAN") == 'true' } + } +} + rootProject.name = 'hsc-integration-test' /* diff --git a/self-check/settings.gradle b/self-check/settings.gradle index f2a65ff9..cf72456f 100644 --- a/self-check/settings.gradle +++ b/self-check/settings.gradle @@ -5,6 +5,15 @@ pluginManagement { } } +develocity { + buildScan { + termsOfUseUrl = 'https://gradle.com/terms-of-service' + termsOfUseAgree = 'yes' + + publishing.onlyIf { System.getenv("GRADLE_BUILD_SCAN") == 'true' } + } +} + rootProject.name = 'self-check' /*