1
0
Fork 0
mirror of https://github.com/gradle/gradle-build-action.git synced 2025-04-11 15:54:14 +02:00
gradle-build-action/.github/workflow-samples/no-wrapper-gradle-5/build.gradle
2024-01-26 13:00:30 -07:00

12 lines
265 B
Groovy

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