gradle-build-action/.github/workflow-samples/no-wrapper-gradle-5/build.gradle
2023-08-14 19:55:05 -06:00

12 lines
266 B
Groovy

plugins {
id "com.gradle.build-scan" version "3.14.1"
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlways()
uploadInBackground = false
}
}