mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-02-21 19:40:59 -05:00
19 lines
No EOL
336 B
Groovy
19 lines
No EOL
336 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation('junit:junit:4.12')
|
|
}
|
|
|
|
tasks.named("test").configure {
|
|
doLast {
|
|
if (System.properties.verifyCachedBuild) {
|
|
throw new RuntimeException("Build was not cached: unexpected execution of test task")
|
|
}
|
|
}
|
|
} |