gradle-build-action/.github/workflows/samples/kotlin-dsl/settings.gradle.kts

16 lines
299 B
Text
Raw Normal View History

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"