mirror of
https://github.com/gradle/actions
synced 2024-12-22 08:02:25 +00:00
8 lines
No EOL
345 B
Groovy
8 lines
No EOL
345 B
Groovy
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}")
|
|
} |