Skip to content

Commit

Permalink
Add build scans (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
hfhbd authored Feb 11, 2024
1 parent 1f1a075 commit 668244d
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 @@ -9,6 +9,18 @@ pluginManagement {
plugins {
id("myRepos")
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
id("com.gradle.enterprise") version "3.16.2"
}

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

rootProject.name = "advendOfCode"
Expand Down

0 comments on commit 668244d

Please sign in to comment.