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

16 lines
302 B
Text
Raw Normal View History

plugins {
2022-05-23 01:09:58 -04:00
id("com.gradle.enterprise") version "3.10.1"
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlways()
isUploadInBackground = false
}
}
rootProject.name = "kotlin-dsl"