Skip to content

Instantly share code, notes, and snippets.

@comdotlinux
Created November 26, 2022 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save comdotlinux/cad8b21681f171b8442ca100ddc9b775 to your computer and use it in GitHub Desktop.
Save comdotlinux/cad8b21681f171b8442ca100ddc9b775 to your computer and use it in GitHub Desktop.
Enabling Gradle Build Scans
plugins {
id("com.gradle.enterprise") version("3.10.1") // https://plugins.gradle.org/plugin/com.gradle.enterprise
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
capture {
isTestLogging = true
isBuildLogging = true
isTaskInputFiles = true
}
buildScanPublished {
file("build-scan-url.log").writeText("${this.buildScanUri}")
}
publishAlways()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment