mirror of
https://github.com/gradle/actions.git
synced 2025-04-16 15:59:18 +08:00
This PR bumps references to Develocity Gradle plugin from 3.19.2 to 4.0. --------- Co-authored-by: daz <daz@gradle.com>
20 lines
577 B
Groovy
20 lines
577 B
Groovy
plugins {
|
|
id "com.gradle.develocity" version "4.0"
|
|
}
|
|
|
|
develocity {
|
|
buildScan {
|
|
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
|
|
termsOfUseAgree = "yes"
|
|
uploadInBackground = false
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'no-wrapper'
|
|
|
|
println "Using Gradle version: ${gradle.gradleVersion}"
|
|
|
|
def gradleVersionCheck = System.properties.gradleVersionCheck
|
|
if (gradleVersionCheck && gradle.gradleVersion != gradleVersionCheck) {
|
|
throw new RuntimeException("Got the wrong version: expected ${gradleVersionCheck} but was ${gradle.gradleVersion}")
|
|
} |