gradle-build-action/.github/workflows/samples/kotlin-dsl/settings.gradle.kts
2022-04-02 12:33:04 -06:00

15 lines
299 B
Text

plugins {
id("com.gradle.enterprise") version "3.9"
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlways()
isUploadInBackground = false
}
}
rootProject.name = "kotlin-dsl"