13 lines
263 B
Groovy
Raw Normal View History

plugins {
2022-04-02 12:45:18 -06:00
id "com.gradle.build-scan" version "3.9"
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlways()
uploadInBackground = false
}
}