gradle-build-action/__tests__/samples/kotlin-dsl/settings.gradle.kts
2021-09-12 10:30:49 -06:00

15 lines
302 B
Text

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