1
0
Fork 0
mirror of https://github.com/gradle/gradle-build-action.git synced 2025-04-07 13:54:13 +02:00
gradle-build-action/.github/workflow-samples/kotlin-dsl/settings.gradle.kts
2024-03-21 21:35:05 -06:00

16 lines
376 B
Kotlin

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