Skip to content

Commit

Permalink
Enable Gradle BuildScan for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscodr committed Jun 8, 2023
1 parent de44eea commit 2d30b29
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ pluginManagement {

enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

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

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

rootProject.name = "xef"

include("xef-kotlin-examples")
Expand Down

0 comments on commit 2d30b29

Please sign in to comment.