Allow Gradle build scans

This commit is contained in:
Daniel Wolf 2019-08-03 21:33:21 +02:00
parent 558157ef85
commit 0bf10b9504
1 changed files with 9 additions and 0 deletions

View File

@ -1,4 +1,8 @@
plugins {
// Build scan plugin should be listed first.
// See https://guides.gradle.org/creating-build-scans/#enable_build_scans_on_all_builds_of_your_project
id("com.gradle.build-scan") version "2.1"
// Sets up standard lifecycle tasks like `build` and `assemble`.
// Also required for the Zip task to compute its archive file name.
base
@ -22,3 +26,8 @@ tasks {
dependsOn(zip)
}
}
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}