plugins {
    id("com.gradle.build-scan") version("3.7")
}

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