mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-23 09:32:50 +00:00
21 lines
No EOL
611 B
Groovy
21 lines
No EOL
611 B
Groovy
plugins {
|
|
id "com.gradle.enterprise" version "3.10.1"
|
|
}
|
|
|
|
gradleEnterprise {
|
|
buildScan {
|
|
termsOfServiceUrl = "https://gradle.com/terms-of-service"
|
|
termsOfServiceAgree = "yes"
|
|
publishAlways()
|
|
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}")
|
|
} |