Skip to content

Commit

Permalink
Enable develocity for all Gradle builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheman committed Aug 18, 2024
1 parent b2475bc commit a4553c1
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
9 changes: 9 additions & 0 deletions integration-test/common/settings.gradle
Original file line number Diff line number Diff line change
@@ -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'

/*
Expand Down
9 changes: 9 additions & 0 deletions integration-test/gradle-plugin/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

/*
Expand Down
9 changes: 9 additions & 0 deletions integration-test/settings.gradle
Original file line number Diff line number Diff line change
@@ -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'

/*
Expand Down
9 changes: 9 additions & 0 deletions self-check/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

/*
Expand Down

0 comments on commit a4553c1

Please sign in to comment.