mirror of
https://github.com/gradle/actions.git
synced 2025-08-19 07:21:28 +08:00
This change primarily impacts test projects and documentation. The only material impact is that CCUD 2.1 will now be auto-applied when publishing Build Scans automatically with `build-scan-publish: true`. (Develocity injection does not hard-code any CCUD version)
16 lines
340 B
Plaintext
16 lines
340 B
Plaintext
plugins {
|
|
id("com.gradle.develocity") version "3.19"
|
|
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.1"
|
|
}
|
|
|
|
develocity {
|
|
buildScan {
|
|
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
|
|
termsOfUseAgree = "yes"
|
|
uploadInBackground = false
|
|
}
|
|
}
|
|
|
|
rootProject.name = "kotlin-dsl"
|
|
|