actions/.github/workflow-samples/no-wrapper-gradle-5/build.gradle
2024-04-03 19:05:27 -06:00

12 lines
264 B
Groovy

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