Skip to content

Commit

Permalink
Added publishing of build scans.
Browse files Browse the repository at this point in the history
  • Loading branch information
lamba92 committed Oct 20, 2023
1 parent 4297574 commit 8670cef
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ dependencyResolutionManagement {
}
}

plugins {
id("com.gradle.enterprise") version "3.15.1"
}

include(
":core",
":decorated-window",
Expand All @@ -37,3 +41,11 @@ include(
":int-ui:int-ui-decorated-window",
":int-ui:int-ui-standalone",
)

gradleEnterprise {
buildScan {
publishAlwaysIf(System.getenv("CI") == "true")
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}

0 comments on commit 8670cef

Please sign in to comment.