mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-27 03:22:12 +00:00
92de6969aa
The test Gradle sample apps reference plugins, and it's good to keep these updated (particularly the GE plugin). Minor changes to the build scripts were required to satisfy Dependabot.
15 lines
299 B
Text
15 lines
299 B
Text
plugins {
|
|
id("com.gradle.enterprise") version "3.7"
|
|
}
|
|
|
|
gradleEnterprise {
|
|
buildScan {
|
|
termsOfServiceUrl = "https://gradle.com/terms-of-service"
|
|
termsOfServiceAgree = "yes"
|
|
publishAlways()
|
|
isUploadInBackground = false
|
|
}
|
|
}
|
|
|
|
rootProject.name = "kotlin-dsl"
|
|
|