Skip to content

Commit

Permalink
Updated to latest develocity plugin supported and added CCUD gradle (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ribafish committed Sep 3, 2024
1 parent 998107a commit 0891026
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
// publish build scans from CI builds
plugins {
id "com.gradle.enterprise" version "3.10"
id "com.gradle.develocity" version "3.17.6"
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2'
}

gradleEnterprise {

def isCI = System.getenv('CI') != null

develocity {
server = "https://ge.gradle.org"
buildScan {
boolean ci = System.getenv('CI') as boolean
publishAlwaysIf(ci)
uploadInBackground = !ci
publishing.onlyIf { isCI }
uploadInBackground = !isCI
}
}

Expand Down

0 comments on commit 0891026

Please sign in to comment.